Created
July 31, 2015 07:59
-
-
Save ShinJJang/69426095d4b2bbdc5d8b to your computer and use it in GitHub Desktop.
windows python3 virtualenv
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> pip3 install virtualenv # 3.x의 python library virtualenv 설치 | |
> python3 -m venv myenv # python3 환경을 virtual environment를 myenv 폴더에 셋팅 | |
> myenv\Scripts\activate.bat # python3 가상 환경을 적용 | |
> deactivate.bat # 가상 환경 해제 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment