🌏 개발환경
가상환경으로 개발하기
써니(>_<)
2022. 10. 29. 18:24
'venv' : standard library
#virtualenv #pienv #conda
# create venv
python3 -m venv ~/venvs/new_project
# activate venv
source ~/venvs/appi/bin/activate
# deactivate
deactivate
What is the difference between venv, pyvenv, pyenv, virtualenv, virtualenvwrapper, pipenv, etc?
Python 3.3 includes in its standard library the new package venv. What does it do, and how does it differ from all the other packages that match the regex (py)?(v|virtual|pip)?env?
stackoverflow.com
https://stackoverflow.com/questions/23842713/using-python-3-in-virtualenv
Using Python 3 in virtualenv
Using virtualenv, I run my projects with the default version of Python (2.7). On one project, I need to use Python 3.4. I used brew install python3 to install it on my Mac. Now, how do I create a
stackoverflow.com