gpt4 book ai didi

python - 使用特定版本的 Python 创建 Windows Python virtualenv

转载 作者:可可西里 更新时间:2023-11-01 10:32:54 28 4
gpt4 key购买 nike

我有多个版本的 Python。我需要为我的项目创建一个 virtualenv,并确保它使用的是 Python 2.7。

我尝试结合使用 this guide 来实现这一点适用于 Windows 上的 virtualenvthis SO postvirtualenv 上使用特定类型的 Python。

不幸的是它不起作用,这可能是因为后一个资源是由使用 Linux 的人编写的。

这是我做的:

C:\Python27\Scripts>pip install virtualenv You are using pip version
6.0.6, however version 9.0.1 is available. You should consider upgrading via the 'pip install --upgrade pip' command. Collecting virtualenv Downloading virtualenv-15.1.0-py2.py3-none-any.whl (1.8MB)
100% |################################| 1.8MB 3.7MB/s eta 0:00:01 Installing collected packages: virtualenv

Successfully installed virtualenv-15.1.0

C:\Python27\Scripts>pip install virtualenvwrapper-win You are using pip version 6.0.6, however version 9.0.1 is available. You should consider upgrading via the 'pip install --upgrade pip' command. Collecting virtualenvwrapper-win Downloading virtualenvwrapper-win-1.2.1.zip Requirement already satisfied (use
--upgrade to upgrade): virtualenv in c:\python27\lib\site-packages (from virtualenvwrapper
-win) Installing collected packages: virtualenvwrapper-win Running setup.py install for virtualenvwrapper-win Successfully installed virtualenvwrapper-win-1.2.1

C:\Python27\Scripts>mkvirtualenv c:\users\hackr\Desktop\P27_D19 --python=C:\Python27\python.exe
'python.exe' is not recognized as an internal or external command, operable program or batch file.

'virtualenv.exe' is not recognized as an internal or external command, operable program or batch file.

更新:我只是使用普通的 virtualenv 而不是推荐的 mkvirtualenv 命令来让它工作,我认为它是包装器的一部分他们让我安装。如果有人想帮助我了解发生了什么,如果不使用包装器有任何缺点,那将是写下答案的好方法。

最佳答案

如果安装了多个 Python 版本,最好始终指定完整路径(确定)而不依赖环境变量(至少我是这样做的):

  • pip install virtualenv:我这样做是这样的:"C:\Install\x64\Python\3.5.3\python.exe"-m pip install virtualenv (不要介意路径)来控制 Python 安装(virtualenvwrapper 也是如此)。

我的"%PYTHON_INSTALLATION_DIR%\Scripts" 中没有mkvirtualenv(例如"C:\Install\x64\Python\3.5. 3\Scripts") 文件夹,但是(这是我现在“制作”的示例):

  • "c:\Install\x64\Python\3.5.3\Scripts\virtualenv.exe"-p "c:\Install\x64\Python\2.7.13\python.exe""c:\venvs\py2713"

从此以后:

  • "c:\venvs\py2713\Scripts\activate.bat"
  • python ......

我知道,指定所有那些时髦的路径有点烦人(在 Lnx 上非常容易),但至少它是安全的。无论如何,在设置虚拟环境后,您可以调整您的环境 (%PATH%),因此您不必指定完整路径。

我在写作时注意到了您的评论,我必须说 PyCharm(专业版)是与 Django 一起工作的优秀工具(事实上,Python 一般而言)。另一方面,如果您选择 Community Edition,它就不是那么好(正如预期的那样)。 [SO]: Run/Debug a Django application's UnitTests from the mouse right click context menu in PyCharm Community Edition?是我不得不处理的痛苦问题之一。

@EDIT0:

刚才我安装了virtualenvwrapper-win:"C:\Install\x64\Python\3.5.3\python.exe"-m pip install virtualenvwrapper-win.通过其完整路径或通过在 %PATH% (mkvirtualenv a) 中添加其父文件夹运行 mkvirtualenv,产生了相同的错误:

'python.exe' is not recognized as an internal or external command, operable program or batch file.

它创建了VEnv(在%USERPROFILE%\Envs 下)。所以错误是良性的。无论如何,它可以通过以下任一方法修复:

  • 设置%PYTHONHOME%
  • %PATH% 中添加 python.exe 的路径

我执行的另一个步骤是将 %WORKON_HOME% 设置为我希望放置我的 VEnvs 的文件夹。请注意,必须保留环境变量(因为我这样做只是为了测试目的,所以我只在用于此任务的 cmd 控制台中设置它们),否则每次都必须设置它们您需要使用这些工具。

在那之后workonlsvirtualenv 就像一个魅力(好吧,不如在 Lnx 中那么好,但足够接近)。lsvirtualenv p>

注意(关于mkvirtualenv v1.2.1):它将使用默认的python.exe(见上面),作为新的 VEnv 的基础,它不如 virtualenv.exe 灵活(它接受 -p/ --python 参数)。

关于python - 使用特定版本的 Python 创建 Windows Python virtualenv,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44165220/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com