Jun-10-2022, 07:59 AM
Jun-10-2022, 08:53 AM
Typically error messages when pip is broken.
So should fix
Also as info you are using Python that comes with Ubuntu as it point to
if had compile Python version yourself or other solution like eg pyenv it would have use
Internal solution ensurepip don't talk to internet.
So should fix
pip
and no try to install missing packages it point to.Also as info you are using Python that comes with Ubuntu as it point to
dist-packages
,if had compile Python version yourself or other solution like eg pyenv it would have use
site-packages
directory.Internal solution ensurepip don't talk to internet.
sudo python3 -m ensurepip --upgradeUsing get-pip.py this will get a new version of pip,setuptools, and wheel.
curl -sS https://bootstrap.pypa.io/get-pip.py | sudo python3Or
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py python get-pip.py --force-reinstall
Jun-10-2022, 10:29 PM
(Jun-10-2022, 07:59 AM)Axel_Erfurt Wrote: [ -> ]or
sudo apt install awscli
unfortunately, the version of awscli in the Ubuntu repository is too old and lacks some new features i need. AWS keeps the version in PYPI up to date.
Jun-10-2022, 10:35 PM
(Jun-10-2022, 04:27 AM)Gribouillis Wrote: [ -> ]Now how about
?
Output:sudo apt install python3-retrying
Am I the only one who can read the console output?
i didn't want to keep picking new package names and trying each. i just want to remove pip and install it. it should then bring in all its dependencies. maybe Ubuntu repackaged it wrong.
Jun-10-2022, 10:42 PM
now i learn the difference between
dist-packages
and site-packages
. i have been trying to make a script to put my modules into the system-wide location, and this difference has kept me confused.Jun-14-2022, 01:56 AM
now what:
Output:Traceback (most recent call last):
File "/usr/local/bin/pip", line 5, in <module>
from pip._internal.cli.main import main
File "/lib/python3/dist-packages/pip/_internal/cli/main.py", line 10, in <module>
from pip._internal.cli.autocompletion import autocomplete
File "/lib/python3/dist-packages/pip/_internal/cli/autocompletion.py", line 9, in <module>
from pip._internal.cli.main_parser import create_main_parser
File "/lib/python3/dist-packages/pip/_internal/cli/main_parser.py", line 7, in <module>
from pip._internal.cli import cmdoptions
File "/lib/python3/dist-packages/pip/_internal/cli/cmdoptions.py", line 31, in <module>
from pip._internal.utils.ui import BAR_TYPES
File "/lib/python3/dist-packages/pip/_internal/utils/ui.py", line 15, in <module>
from pip._vendor.progress import HIDE_CURSOR, SHOW_CURSOR
ModuleNotFoundError: No module named 'pip._vendor.progress'
Jun-14-2022, 01:58 AM
i just did a purge and re-install of pip. anyone know why the Ubuntu pip package is not bring in all of its dependencies?
Jun-14-2022, 08:15 AM
Read the comments at the top of this file, this may help
Output:less /lib/python3/dist-packages/pip/_vendor/__init__.py
This may be the answerQuote:This
# is done to support downstream re-distributors like Debian and Fedora who
# wish to create their own Wheels for our dependencies to aid in debundling.
Jun-15-2022, 06:27 AM
i gave up on this and will try to download it from github. looks like one of the links was a big binary file that began with "#!/usr/bin/env python3.
Jun-15-2022, 11:54 AM
If pip3 is not present in an (Ubuntu) distribution, it is installed normally with the command
This will also install all dependencies.
sudo apt install python3-pip
This will also install all dependencies.