You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
...(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
>>>fromdopy.managerimportDoManager
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
The text was updated successfully, but these errors were encountered:
Got this error on Mac OSX 10.12.5 & Python 3.6.1:
Output:
Fine so far, let's test it:
Everything worked fine after installing
six
:The text was updated successfully, but these errors were encountered: