며칠 전에 우분투 14.04에서 우분투 16.04로 업그레이드했습니다. 사용하여 가상 환경을 만들려고 할 때
pyvenv .venv
또는
python3 -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: ['/usr/bin/python3.5', '-Im', 'ensurepip', '--upgrade', '--default-pip']
나는 둘 다 실행 해 보았다
sudo apt-get install python3-venv
과
sudo apt-get install python3.5-venv
그러나 그것은 내 문제를 해결하지 못했습니다.