gitcheck
gitcheck copied to clipboard
gitcheck installation with pip doesn't install 'colored' automatically
Just for your information, maybe it is the way it should be. For example:
# Python 3.5
virtualenv gitcheck
. gitcheck/bin/activate
pip install git+git://github.com/badele/gitcheck.git
gitcheck
....
ImportError: No module named 'colored'
pip install colored
I think that the pip does't install colored
automatically from base.txt.
I have tried to fix it in that pull-request. Useful references :
-
http://stackoverflow.com/questions/15422527/best-practices-how-do-you-list-required-dependencies-in-your-setup-py
-
http://stackoverflow.com/a/33685899/469294
Any chance this can be fixed by merging the PR mentioned above?