Error with link and alias the installed python3 #10236
Replies: 1 comment 1 reply
-
Since you are on a M1 mac, try a revised step list from the beta docs here: https://beta.docs.nativescript.org/setup/macos#installing-python-and-six This one will be adjusted further as we found that |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello
I've follow all guides and information that I know of and yet I haven't been able to come around this issue:
issue background:
if I run the command ns doctor as final verification this is the eco:
✖ WARNING: The Python 'six' package not found.
This package is required by the Debugger library (LLDB) for iOS. You can install it by first making sure you have pip installed and then running 'pip install six' from the terminal.
Your environment is not configured properly and you will not be able to execute local builds.
Verify that your environment is configured according to the system requirements described at
https://docs.nativescript.org/environment-setup.html.>
Basically the issue is at this line:
sudo ln -s $(which python3) /usr/local/bin/python
if I try the command line this is the result:
ln: /usr/local/bin/python: No such file or directory
I have search for the referred direction and does not exist,
/usr/bin/python
However if I run the command assudo ln -s $(which python3) /usr/bin/python
This is the terminal prompted message:
ln: /usr/bin/python: Operation not permitted
Running test commands response:
python --version Python 3.9.6
pip3 --version pip 23.0.1 from /Users/HIDEN/Library/Python/3.9/lib/python/site-packages/pip (python 3.9)
pip --version pip 23.0.1 from /Users/HIDEN/Library/Python/3.9/lib/python/site-packages/pip (python 3.9)
QUESTION:
How can I complete the installation or replace the command:
sudo ln -s $(which python3) /usr/local/bin/python
Thanks
Beta Was this translation helpful? Give feedback.
All reactions