使用virtualenv更改现有虚拟环境的python版本时出错

时间:2018-05-27 02:39:09

标签: python virtualenv

我有一个带有python 3.5的Windows 7操作系统。

我必须将python版本升级到3.6。

我已经下载并安装了python包。

以前,我使用powershell运行以下命令来更改虚拟环境中的python版本:

virtualenv env3 -p C:\Users\me\AppData\Local\Programs\Python\Python36-32\python.exe

但是,当我尝试运行上述命令时收到以下错误:

virtualenv : The term 'virtualenv' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ virtualenv env3 -p
C:\Users\me\AppData\Local\Programs\Python\Python36-32\py ...
+ ~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (virtualenv:String) [], CommandN
   otFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

我已将powershell作为管理员运行,但错误仍然存​​在。

我搜索了SO&谷歌但无法找到解决办法。

1 个答案:

答案 0 :(得分:0)

更新您的PATH变量。你可能拥有virtualenv的旧路径。

或者,通过执行命令venv:

来创建虚拟环境
c:\>c:\Python35\python -m venv c:\path\to\myenv

请参阅文档Creating virtual environments