-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
pip 19.3 breaking on CircleCI sys.exit(main()) TypeError: 'module' object is not callable
#7205
Comments
The You should either use |
thanks @pfmoore. Using |
EnvironmentOS: Windows 10 Build 18362 hi, |
Same here in docker image, switching from |
Try with python -m pip install --upgrade --user [name_of_your_package] It worked for me in pip 19.3.1 (November 2019) |
The solution which worked for my situation is simply editing the pip3.8 file in the ubuntu environment. Method1:
method2: The main function has to be imported or we can simply replace line
As
|
python -m pip install --user -U pip |
Environment
More env details can be seen on CircleCI: https://circleci.com/gh/mne-tools/mne-python/16276?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link under the heading
spin up environment
, and the traceback of the fail under the headingget python running
Description
our CircleCI testing environment started failing today when running
pip install --user --upgrade
, presumably because of a not-clean upgrade from 19.2.3 (which comes in the docker image) to 19.3.Expected behavior
pip install --user --upgrade
should work cleanly and not yieldTypeError
Output
The text was updated successfully, but these errors were encountered: