我一直在寻找和尝试各种选择都没有成功,现在花了好几天的时间——快把我逼疯了。

在Red Hat Linux和Python 2.5.2上运行 开始使用最新的Virtualenv,但无法激活它,我发现某处建议需要更早的版本,所以我使用了Virtualenv 1.6.4,因为它应该与Python 2.6兼容。

似乎安装虚拟环境没问题

[necrailk@server6 ~]$ python virtualenv-1.6.4/virtualenv.py virtual
New python executable in virtual/bin/python
Installing setuptools............done.
Installing pip...............done.

环境看起来还不错

[necrailk@server6 ~]$ cd virtual
[necrailk@server6 ~/virtual]$ dir
bin  include  lib

试图激活

[necrailk@server6 ~/virtual]$ . bin/activate
/bin/.: Permission denied.

检查修改文件权限

[necrailk@server6 ~/virtual]$ cd bin
[necrailk@server6 bin]$ ls -l
total 3160
-rw-r--r--    1 necrailk biz12        2130 Jan 30 11:38 activate
-rw-r--r--    1 necrailk biz12        1050 Jan 30 11:38 activate.csh
-rw-r--r--    1 necrailk biz12        2869 Jan 30 11:38 activate.fish
-rw-r--r-

有问题,所以我改了

[necrailk@server6 bin]$ ls -l
total 3160
-rwxr--r--    1 necrailk biz12        2130 Jan 30 11:38 activate
-rw-r--r--    1 necrailk biz12        1050 Jan 30 11:38 activate.csh
-rw-r--r--    1 necrailk biz12        2869 Jan 30 11:38 activate.fish
-rw-r--r--    1 necrailk biz12        1005 Jan 30 11:38 activate_this.py
-rwxr-xr-x    1 necrailk biz

再次尝试激活

[necrailk@server6 ~/virtual]$ . bin/activate
/bin/.: Permission denied.

还是不高兴……


当前回答

在Mac上,将shell更改为BASH(请注意虚拟环境只在BASH shell中工作)

[user@host tools]$. venv/bin/activate 

.: Command not found.

[user@host tools]$source venv/bin/activate

Badly placed ()'s.

[user@host tools]$bash

bash-3.2$ source venv/bin/activate

(venv) bash-3.2$ 

没错,成功了。见提示符已更改。

在Ubuntu上:

user@local_host:~/tools$ source toolsenv/bin/activate

(toolsenv) user@local_host~/tools$ 

注:提示符更改

其他回答

现在在这里发表我的答案可能有点晚了,但我还是会发表的,尽管这可能会让一些人受益,

我也遇到过同样的问题,

主要原因是我以“根”用户创建了virtualenv 但后来我试图用另一个用户激活它。

Chmod不能工作,因为你不是文件的所有者,因此替代方案是使用chown(改变所有权)

例如:

如果你在/home/abc/ENV创建了virtualenv

CD到/home/abc目录

chown -Rv [user-to- whose -you want-change-ownership][需要更改所有权的文件夹/文件名]

在本例中,命令为:chown -Rv abc ENV

在所有权成功变更后,您可以简单地运行source /ENV/bin/。/activate,你应该能够正确地激活virtualenv。

我也会推荐virtualenvwrapper。这对我来说很神奇,我总是在激活方面有问题。http://virtualenvwrapper.readthedocs.org/en/latest/

Windows 10

在Windows中,这些目录是创建的:

在Windows 10中激活虚拟环境。

down\scripts\activate

\scripts目录包含激活文件。

Linux Ubuntu

在Ubuntu中,这些目录是创建的:

激活Linux Ubuntu中的虚拟环境。

source ./bin/activate

/bin目录下包含激活文件。


虚拟环境从Windows复制到Linux Ubuntu,反之亦然

如果虚拟环境文件夹从Windows复制到Linux Ubuntu,则根据目录:

source ./down/Scripts/activate

创建自己的Python虚拟环境,名为< your Env _name >:。 我给它VE。

git clone https://github.com/pypa/virtualenv.git
python virtualenv.py VE

要激活你的新虚拟环境,运行(注意这里不是。/):

. VE/bin/activate

示例输出(注释提示已更改):

(VE)c34299@a200dblr$

设置好虚拟环境后,可以删除Virtualenv回购。

你可以这样做

source ./python_env/bin/activate

或者直接去目录

cd /python_env/bin/

然后

source ./activate

祝你好运。