Python Language
Windows에서 virtualenvwrapper로 가상 환경 만들기
수색…
Windows 용 virtualenvwrapper가있는 가상 환경
프로젝트 A, 프로젝트 B, 프로젝트 C. 프로젝트 A와 프로젝트 B가 파이썬 3과 필요한 라이브러리를 필요로한다고 가정 해 보겠습니다. 그러나 프로젝트 C에는 파이썬 2.7 및 종속 라이브러리가 필요합니다.
따라서이 프로젝트 환경을 분리하는 것이 가장 좋습니다. 별도의 파이썬 가상 환경을 생성하려면 다음 단계를 수행해야합니다.
1 단계 : 이 명령으로 python -m pip install -U pip
: python -m pip install -U pip
2 단계 : 그런 다음 명령을 사용하여 "virtualenvwrapper-win"패키지를 설치합니다 (명령은 Windows Power Shell을 실행할 수 있음).
pip install virtualenvwrapper-win
3 단계 : 명령을 사용하여 새 mkvirtualenv python_3.5
환경 만들기 : mkvirtualenv python_3.5
4 단계 : 명령을 사용하여 환경 활성화 :
workon < environment name>
virtualenvwrapper의 주요 명령 :
mkvirtualenv <name>
Create a new virtualenv environment named <name>. The environment will be created in WORKON_HOME.
lsvirtualenv
List all of the enviornments stored in WORKON_HOME.
rmvirtualenv <name>
Remove the environment <name>. Uses folder_delete.bat.
workon [<name>]
If <name> is specified, activate the environment named <name> (change the working virtualenv to <name>). If a project directory has been defined, we will change into it. If no argument is specified, list the available environments. One can pass additional option -c after virtualenv name to cd to virtualenv directory if no projectdir is set.
deactivate
Deactivate the working virtualenv and switch back to the default system Python.
add2virtualenv <full or relative path>
If a virtualenv environment is active, appends <path> to virtualenv_path_extensions.pth inside the environment’s site-packages, which effectively adds <path> to the environment’s PYTHONPATH. If a virtualenv environment is not active, appends <path> to virtualenv_path_extensions.pth inside the default Python’s site-packages. If <path> doesn’t exist, it will be created.
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow