-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On travis: ImportError: No module named download #23
Comments
I had a very similar issue, which prevented installation of sirepo.
|
Looks like the moved pip.download to pip._internal.download. From the Release Notes:
We use pip to parse requirements.txt so we'll change that to whatever is recommended. |
pip removed all APIs in version 10 so pip.download and pip.main are not allowed. It's impractical to support pykern being installed automatically so packages will have to install pykern before they run setup.py if they refer to pykern in setup.py (e.g. using pksetup). For RadiaSoft, this isn't a problem, because we install from known environments setup by our curl installers (usually inside vagrant or docker). For others, it's a design flaw that you can't use a library in setup.py that is not in base python. To get projex_test.py to work with tox, added some code inside pksetup.py that supports looking for the right python version. Removed extras_require, because I don't think that's necessary any more to build jupyterhub.
@slacAWallace Please try the last step again. Thanks. |
Yes that seemed to do the trick. Install was successful. Thanks! |
If you look at the previous build, it's got the same version of
pip
, but it doesn't get this error:The text was updated successfully, but these errors were encountered: