Code: Select all
/usr/bin/xcodebuild -version
Xcode 12.5
Build version 12E262Karl
Code: Select all
/usr/bin/xcodebuild -version
Xcode 12.5
Build version 12E262Actually Karl, I think are correct about python 3 being installed by default on MacOS Big Sur.kw123 wrote:yes you might be right, I did install Xcode on my indigo clientI will update my how to postCode: Select all
/usr/bin/xcodebuild -version Xcode 12.5 Build version 12E262
Karl
I'm maybe 80% sure that this is the way it works in Big Sur as well. My Big Sur install has 2 version of Python 3 installed, but neither is the version that you guys are referencing. Both are in fact versions I explicitly installed from python.org (via their respective installers). I surmise that I didn't run the python3 command BEFORE I manually installed those other versions, so therefore didn't get prompted to install from the developer tools. Again, I'm not positive, but I'm pretty sure that's what happened.autolog wrote:When you type python3 into a terminal session on MacOS Monterey, it asks if you want to install Xcode developer tools.
When you do that, python 3 is installed (same version 3.8.2) as part of the Xcode Developer Tools install.)
Code: Select all
MightyMini-2:bin jay$ ls /Library/Frameworks/Python.framework/Versions/
3.6 3.7Code: Select all
python3
from pyatv import connect
exit()Code: Select all
:python3
Python 3.8.2 (default, Apr 8 2021, 23:19:18)
[Clang 12.0.5 (clang-1205.0.22.9)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from pyatv import connect
exit()
>>>
>>> exit()
Code: Select all
python3
Python 3.8.2 (default, Apr 8 2021, 23:19:18)
[Clang 12.0.5 (clang-1205.0.22.9)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from pyatvx import connect
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'pyatv'
>>>
>>> exit()
Looking at the plugin contents, I can't see that it is included.ModuleNotFoundError: No module named 'pyatv'