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
Both pip3 install filebytes and python3.5 setup.py install --user install the package as UNKNOWN-0.9.21 instead of filebytes-0.9.21 which means packages that depend on this one don't find it.
This can be reproduced in an ubuntu:16.04 docker image.
The text was updated successfully, but these errors were encountered:
The problem seems to be the version of setuptools shipped in ubuntu 16.04 (setuptools-20.7.0). Upgrading to setuptools-41.6.0 with pip install --upgrade setuptools allows filebytes to be installed (with python3.5 setup.py install or pip3 install filebytes).
Perhaps a warning could be added to the readme about the requirement of a non-ancient setuptools? (16.04 seems still common if only to show flaws in glibc-2.23).
Both
pip3 install filebytes
andpython3.5 setup.py install --user
install the package asUNKNOWN-0.9.21
instead offilebytes-0.9.21
which means packages that depend on this one don't find it.This can be reproduced in an ubuntu:16.04 docker image.
The text was updated successfully, but these errors were encountered: