-
가상환경으로 개발하기🌏 개발환경 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
'🌏 개발환경' 카테고리의 다른 글
다양한 환경에서 파이썬 설치하기 (0) 2022.10.31 dependency 설정 - requirements.txt (0) 2022.10.29 [web app prototyping with GCP] 7. Deploy frontend (0) 2022.10.20 [web app prototyping with GCP] 6. deploy backend (0) 2022.10.20 [web app prototyping with GCP] 5. Setup frontend VM / backend VM (0) 2022.10.20