Replies: 4 comments 1 reply
-
Where did you compile your Python to? Also have you tried installing virtualenv via I found installing with |
Beta Was this translation helpful? Give feedback.
-
I didn't tried using |
Beta Was this translation helpful? Give feedback.
-
On Ubuntu: VERSION="18.04.2 LTS (Bionic Beaver)" |
Beta Was this translation helpful? Give feedback.
-
Using wsl with Ubuntu 20.04, I´ve installed virtualenv both via pip and apt-get and it still does not work. The error message is:
" |
Beta Was this translation helpful? Give feedback.
-
Microsoft Windows [Version 10.0.15063]
Python version (manually compiled, its NOT altinstall)
pip
(which is a python package manager) andvirtualenv
suddenly goes missing. They were working just sometime back and its not there anymore.I am trying
virtualenv my_env
Output:
The program 'virtualenv' is currently not installed. You can install it by typing: sudo apt-get install python-virtualenv
So I try:
sudo apt-get install python-virtualenv
I get:
So I try apt-get update and upgrade and cache clean and -f and all other things, but still the same error, Finally I use
sudo aptitude install python-virtualenv
It gives:
So I thought
virtualenv
is now install, but its still not there.I try also try to install pip, same result
sudo apt-get install python-pip
Then I thought of installing pip manually, using
python get-pip.py
, so I try to copy the content of https://bootstrap.pypa.io/get-pip.py in a file, likevim get-pip.py
Activate insertion using 'i'
as soon as i paste, bash hangs indefinitely .
finally i had to do this
That installed everything as expected, but it was lot of work :(
Beta Was this translation helpful? Give feedback.
All reactions