Tôi đã nâng cấp từ ubuntu 14.04 lên ubuntu 16.04 một vài ngày trước. Khi tôi cố gắng tạo một env ảo bằng cách sử dụng
pyvenv .venv
hoặc là
python3 -m venv .venv
Có một lỗi:
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']
Tôi đã thử chạy cả hai
sudo apt-get install python3-venv
và
sudo apt-get install python3.5-venv
nhưng nó không giải quyết được vấn đề của tôi.