Skip to content

Instantly share code, notes, and snippets.

@ShinJJang
Created July 31, 2015 07:59
Show Gist options
  • Save ShinJJang/69426095d4b2bbdc5d8b to your computer and use it in GitHub Desktop.
Save ShinJJang/69426095d4b2bbdc5d8b to your computer and use it in GitHub Desktop.
windows python3 virtualenv
> 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