同时为 Python 2.7 和 3.6 安装 virtualenvwrapper
Install virtualenvwrapper for Python 2.7 and 3.6 simultaneously
如何为 Python 2.7
和 3.6
版本安装 virtualenvwrapper
?我的默认 Python 环境是 Python 3.6
,因此 virtualenvwrapper
是为 Python 3.6
而不是 2.7
安装的。我正在使用 macOS Sierra 10.12.6
.
你只需要install virtualenvwrapper
once。请参阅关于在基础 Python 安装上安装的警告。
使用 Homebrew 包管理器安装 python2
和 python3
。
做个虚拟环境,就是传个flag。
# make py3
mkvirtualenv py3 --python=python3
# make py2
mkvirtualenv py2 --python=python2
如何为 Python 2.7
和 3.6
版本安装 virtualenvwrapper
?我的默认 Python 环境是 Python 3.6
,因此 virtualenvwrapper
是为 Python 3.6
而不是 2.7
安装的。我正在使用 macOS Sierra 10.12.6
.
你只需要install virtualenvwrapper
once。请参阅关于在基础 Python 安装上安装的警告。
使用 Homebrew 包管理器安装 python2
和 python3
。
做个虚拟环境,就是传个flag。
# make py3
mkvirtualenv py3 --python=python3
# make py2
mkvirtualenv py2 --python=python2