我创建了一个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 10中CD你的项目类型

Scripts/activate

这对我来说很有用:)

其他回答

最终在Windows 10上使用:

activate myvenv

其中myvenv是我想激活的虚拟环境的名称。

基本上,这个命令是:

activate <<your_venv_name>>

祝你一切顺利!

对于windows,在不带引号的终端中输入“C:\Users\Sid\venv\FirstProject\Scripts\activate”。只需给出项目中脚本文件夹的位置。因此,该命令将是location_of_the_Scripts_Folder\activate。

source是一个shell命令,专为运行在Linux(或任何Posix,但不管怎样,不是Windows)上的用户而设计。

在Windows上,virtualenv会创建一个.bat/。ps1文件,所以你应该运行venv\Scripts\activate代替(根据virtualenv文档的激活脚本)。

只需运行activate,不需要扩展名,这样无论您使用cmd.exe还是PowerShell,都将使用正确的文件。

我有一个地狱的时间在windows上使用virtualenv与git bash,我通常最终明确指定python二进制。

如果我的环境在say .env中,我将通过。/.env/Scripts/python.exe…或在shebang行#!./.env/Scripts/python.exe调用python;

两者都假设工作目录包含virtualenv (.env)。

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

source venv/Scripts/activate

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