virtualenv에서 그냥 가상 환경을 실행하면 python2 환경으로 구축된다.
$ virtualenv envname
python3 환경으로 구축하고 싶다면 다음 커맨드를 실행한다.
$ virtualenv -p python3 envname
'python' 카테고리의 다른 글
python -m json tool - json 예쁘게 출력할 대 유용한 툴 (0) | 2017.10.31 |
---|---|
jinja2.exceptions.UndefinedError: 'dict object' has no attribute 'iteritems' 에러 해결 (0) | 2017.10.11 |
fatal error: Python.h: No such file or directory #include "Python.h" 해결하기 (0) | 2017.10.10 |
[python3] ++ 연산자 (0) | 2017.09.28 |
python2와 python3의 차이점 - string.decode() (0) | 2017.09.28 |