WARNING: The Python 'six' package not found.
See original GitHub issueFrom @obiwankenoobi on April 18, 2018 11:52
after installing NativeScript on my macos using
ruby -e "$(curl -fsSL https://www.nativescript.org/setup/mac)"
I ran into error while typing tns doctor
which tells me
WARNING: The Python 'six' package not found.
and when I trying to install six by pip install six
I get the message : Requirement already satisfied: six in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (1.4.1)
so there is six
installed but yet it wont let me move on because of it
Copied from original issue: NativeScript/NativeScript#5699
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:31 (11 by maintainers)
Top Results From Across the Web
Mac M1 python packages error after upgrade to python3
The Python 'six' package not found. enter image description here. I tried python and pip upgrade and also the command pip install six...
Read more >ModuleNotFoundError: No module named 'six' in Python
The Python "ModuleNotFoundError: No module named 'six'" occurs when we forget to install the six module before importing it or install it in...
Read more >Trying to install python six with pip runs into problems on ...
To install the python-six package from the default Ubuntu 16.04 ... To install six globally with pip, open the terminal and type:
Read more >How to Install six in Python? - Finxter
Because you haven't installed the package, Python raises a ModuleNotFoundError: No module named 'six' . To fix the error, install the six library...
Read more >six · PyPI
Python 2 and 3 compatibility utilities. ... six on PyPI six on TravisCI six's documentation on Read the Docs MIT ... The code...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Just reproduced the issue on brand new macOS High Sierra.
Here is what happens: tns doctor fails because
six
is not found. This happens becausepython -c "import six"
fails. On the other sidepip install six
saysRequirement already satisfied
.Here is how I was able to workaround it:
@obiwankenoobi what is your OS perhaps El Capitan? If so try this solution