Re: [Cloud] pip

2018-08-11 Thread Huji Lee
I think I found the solution actually. I found it on https://wikitech.wikimedia.org/wiki/ORES/Deployment#Update_wheels and am pasting it below as well: virtualenv -p python3 venv source venv/bin/activate pip install --upgrade pip pip install whatever On Sat, Aug 11, 2018 at 10:20 AM Huji Lee wr

Re: [Cloud] pip

2018-08-11 Thread Huji Lee
Actually, I should have tested it before sending that email. When I run python3 -m venv $HOME/www/python/venv I get the following error. What am I missing here? The virtual environment was not created successfully because ensurepip is not available. On Debian/Ubuntu systems, you need to install t

Re: [Cloud] pip

2018-08-11 Thread Huji Lee
Perfect, thanks! On Sat, Aug 11, 2018 at 6:01 AM Michael Schönitzer < michael.schoenit...@wikimedia.de> wrote: > It's available – and you should use venv. Something like: > > $ python3 -m venv $HOME/www/python/venv$ source > $HOME/www/python/venv/bin/activate$ pip install --upgrade pip*$* pip in

Re: [Cloud] pip

2018-08-11 Thread Michael Schönitzer
It's available – and you should use venv. Something like: $ python3 -m venv $HOME/www/python/venv$ source $HOME/www/python/venv/bin/activate$ pip install --upgrade pip*$* pip install whatever Cheers, M 2018-08-11 2:51 GMT+02:00 Huji Lee : > Hi all, > > What is the best way to install pip on t