Wiredcraft / dopy

Digital Ocean Python
MIT License
95 stars 62 forks source link

ModuleNotFoundError: No module named 'six' #60

Open louisiukas opened 7 years ago

louisiukas commented 7 years ago

Got this error on Mac OSX 10.12.5 & Python 3.6.1:

pip3 install dopy

Output:

...(bla bla)...

Building wheels for collected packages: dopy
  Running setup.py bdist_wheel for dopy ... done
  Stored in directory: /Users/lwi/Library/Caches/pip/wheels/a1/df/d1/3caaf1c8f8ec30fff80df0d89f1dedeebfd99f66db1029ace2
Successfully built dopy
Installing collected packages: urllib3, certifi, idna, chardet, requests, dopy
Successfully installed certifi-2017.7.27.1 chardet-3.0.4 dopy-0.3.7 idna-2.5 requests-2.18.3 urllib3-1.22

Fine so far, let's test it:

python3
>>> from dopy.manager import DoManager
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python3.6/site-packages/dopy/manager.py", line 10, in <module>
    from six import wraps
ModuleNotFoundError: No module named 'six'
>>> 

Everything worked fine after installing six:

pip3 install six