我创建了一个virtualenv围绕我的项目,但当我尝试激活它时,我不能。 这可能只是语法或文件夹位置的问题,但我现在被难住了。

您可以在下面看到,我创建了virtualenv并将其命名为venv。一切看起来都很好,然后我尝试通过运行source venv/bin/activate来激活它

我想这可能只是与我的系统路径有关,但不确定指向什么(我确实知道如何编辑路径)。我使用的是python 7 / windows操作系统,虚拟环境2.2.x

Processing dependencies for virtualenv
Finished processing dependencies for virtualenv

c:\testdjangoproj\mysite>virtualenv --no-site-packages venv
The --no-site-packages flag is deprecated; it is now the default behavior.
Using real prefix 'C:\\Program Files (x86)\\Python'
New python executable in venv\Scripts\python.exe
File venv\Lib\distutils\distutils.cfg exists with different content; not overwri
ting
Installing setuptools.................done.
Installing pip...................done.

c:\testdjangoproj\mysite>source venv/bin/activate
'source' is not recognized as an internal or external command,
operable program or batch file.

c:\testdjangoproj\mysite>source venv/bin/activate
'source' is not recognized as an internal or external command,
operable program or batch file.

c:\testdjangoproj\mysite>source mysite/bin/activate
'source' is not recognized as an internal or external command,
operable program or batch file.

c:\testdjangoproj\mysite>

当前回答

如果想要在Windows上打开虚拟环境,那么只需要记住一件事,在给出路径时使用向后斜杠而不是向前斜杠。

这是正确的:

D:\xampp\htdocs\htmldemo\python-virtual-environment>env\Scripts\activate

这是错误的:

D:\xampp\htdocs\htmldemo\python-virtual-environment>env/Scripts/activate

其他回答

使用VS代码编辑器打开你的项目。 将vs code终端中的默认shell更改为git bash。 现在,您的项目已经使用bash控制台打开,并在正确的路径中放置 “源venv\脚本\激活”在Windows

if .\venv\Scripts\activate也不工作,你会发现这个错误

\激活。Ps1无法加载,因为在此系统上禁用了运行脚本

你可以简单地在powershell中输入set-executionpolicy remotessigned,错误一定会消失。

Powershell应该以管理员身份运行

source命令是Unix操作系统家族的官方命令,你基本上不能在windows上使用它。相反,您可以使用venv\Scripts\activate命令来激活您的虚拟环境。

以管理员身份打开powershell 输入“Set-ExecutionPolicy remotessigned -Force” “gpedit运行。>管理模板>Windows组件>Windows Powershell 寻找“激活脚本执行”并将其设置为“激活” 设置执行指令为“允许全部” 应用 刷新你的环境

尝试了几个不同的命令,直到我发现:

source venv/Scripts/activate

这对我很有用。安装:win10, python 3.7, gitbash。Gitbash可能是其他激活命令不能很好地发挥作用的罪魁祸首。