question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

WARNING: The Python 'six' package not found.

See original GitHub issue

From @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:open
  • Created 5 years ago
  • Reactions:1
  • Comments:31 (11 by maintainers)

github_iconTop GitHub Comments

30reactions
dtopuzovcommented, Apr 23, 2018

Just reproduced the issue on brand new macOS High Sierra.

Here is what happens: tns doctor fails because six is not found. This happens because python -c "import six" fails. On the other side pip install six says Requirement already satisfied.

Here is how I was able to workaround it:

sudo pip install --upgrade pip
pip install --user --upgrade matplotlib
pip install six
9reactions
NickIlievcommented, Apr 18, 2018

@obiwankenoobi what is your OS perhaps El Capitan? If so try this solution

pip install --ignore-installed six
Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found