$ python3.6 -m venv venv
The virtual environment was not created successfully because ensurepip is not
available. On Debian/Ubuntu systems, you need to install the python3-venv
package using the following command.
apt-get install python3-venv
You may need to use sudo with that command. After installing the python3-venv
package, recreate your virtual environment.
Failing command: ['/home/ubuntu/venv/bin/python3.6', '-Im', 'ensurepip', '--upgrade', '--default-pip']
Ubuntu 14 とか 16 でこんな感じになる時は
↓
$ python3.6 -m venv --without-pip venv
$ source venv/bin/activate
$ python --version
$ curl https://bootstrap.pypa.io/get-pip.py | python
--without-pip
でやる
コメント