What is the difference between these two commands python3 -m venv ~/.virtualenv/miniprojects
and virtualenv venv -p python3
and how will they impact my code. Consider that virtualenv venv -p python3
in my mini projects directory.
Asked
Active
Viewed 246 times
0

Darius
- 10,762
- 2
- 29
- 50

Jayanthi Palanichamy
- 11
- 1
-
both create virtual envs in different dirs. As much as I know – Arpit Solanki Feb 12 '18 at 09:44
-
https://stackoverflow.com/questions/41573587/what-is-the-difference-between-venv-pyvenv-pyenv-virtualenv-virtualenvwrappe – Ry- Feb 12 '18 at 10:08
-
Possible duplicate of [What is the difference between venv, pyvenv, pyenv, virtualenv, virtualenvwrapper, pipenv, etc?](https://stackoverflow.com/questions/41573587/what-is-the-difference-between-venv-pyvenv-pyenv-virtualenv-virtualenvwrappe) – phd Feb 12 '18 at 13:59