pip 6.0.8 AttributeError when upgrading to 6.1.1 in virtualenv
See original GitHub issueWindows 7, Python 3.4.3, updated pip in base. Created virtualenv, saw that it was still on pip 6.0.8
Activated venv, ran python -m pip install pip -U
log:
Installing collected packages: pip
Found existing installation: pip 6.0.8
Uninstalling pip-6.0.8:
Successfully uninstalled pip-6.0.8
Rolling back uninstall of pip
...
result = finder(distlib_package).find(name).bytes
AttributeError: 'NoneType' object has no attribute 'bytes'
However, next time I run pip -V, it reports pip 6.1.1, so what is the effect of the error?
Issue Analytics
- State:
- Created 8 years ago
- Reactions:2
- Comments:37 (6 by maintainers)
Top Results From Across the Web
Error upgrading pip in virtualenv in Windows - Stack Overflow
It happening because your os didn't give the permission to create virtualenvironment. You can solve it by opening powershell administrative ...
Read more >Release History — virtualenv 20.17.2.dev2+g6845f6f ...
Upgrade embedded pip to 22.2 from 22.1.2 and setuptools to 63.2.0 from 62.6.0 ... Fix AttributeError: 'bool' object has no attribute 'error' when...
Read more >pip Documentation - Read the Docs
4. In a --system-site-packages virtualenv, pip will not install a package that conflicts with a package in the virtualenv site-packages.
Read more >pip 0.6.2 - PyPI
Simple to define fixed sets of requirements and reliably reproduce a set of packages. pip is complementary with virtualenv, and it is encouraged...
Read more >virtualenv(1) — Arch manual pages
install (bootstrap) seed packages (one or more of pip, setuptools, wheel) in the created virtual environment,; install activation scripts into the binary ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Same sh** with pip 7.1.0 with Python 2.7 on Window 7 64bit - see below.
BUT HAPPILY
easy_install -U pip
did it for me and upgraded to 7.1.2 😃easy_install -U pip worked for me . Thanks 👍