venv is a standard python3 module, thus I assume it should be shipped with python3 by default.
That is not quite true on Ubuntu 16.04: to use venv you also need to install python3-venv.
Why on Ubuntu venv is split into venv and python3-venv?
Asked
Active
Viewed 314 times
4
Ayrat
- 309
venvwithout installing python3-venv in 16.04 – Anwar Jun 11 '17 at 07:54python3 -m venv --helpwithout installingpython3-venv, and so did a few other users in the chatroom. Are you sure you need to installpython3-venv? – edwinksl Jun 11 '17 at 07:54--without-pip, it created the environment but could not activate it (as far as i remember). Then I installed packagepython3-env, and it works now (though I still don't havepipsystem-wide installed). – Ayrat Jun 11 '17 at 16:39