Created
April 11, 2020 19:26
-
-
Save y56/0540d22a1db40dacc7fbbb93c866821e to your computer and use it in GitHub Desktop.
ERROR: launchpadlib 1.10.6 requires testresources, which is not installed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.discoverbits.in/864/error-launchpadlib-requires-testresources-which-installed | |
== | |
ERROR: launchpadlib 1.10.6 requires testresources, which is not installed. | |
+2 votes | |
asked Oct 6, 2019 in Programming Languages by pythonuser (11.5k points) | |
recategorized Oct 6, 2019 by pythonuser | |
I am getting the following error when I try to upgrade setuptools: | |
ERROR: launchpadlib 1.10.6 requires testresources, which is not installed. | |
How can I fix the error? | |
python setuptools launchpadlib | |
1 Answer | |
0 votes | |
answered Oct 6, 2019 by pkumar81 (20.1k points) | |
Try the following command to fix the error: | |
Python3 | |
sudo apt install python3-testresources | |
Python2 | |
sudo apt install python-testresources | |
yep, me to. Thanks
Thaks buddy !
Thanks!
Thanks!
E: Unable to locate package python3-testresource
Anyone got this error?
Help a lot ! Tks !
Thanks a lot!!
thanks
Thanks!
wow it worked
Thanks!
good one! worked!
seems to fix my odrivetools
Worked for me!
Python3
sudo apt install python3-testresources
Python2
sudo apt install python-testresources
thanks, worked
Python3 sudo apt install python3-testresources
Worked for me too, was installing ANSIBLE
Worked for me!
Python3
sudo apt install python3-testresources
Python2
sudo apt install python-testresources
Thank you! this worked for me
thanks
Thanks! Worked while installing pipenv with Python 3.8.10 and pip 23.2 :p
This worked and fixed another error in flask for me, thanks!
on windows too?
mark
Thaks buddy !
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks buddy!