bash: mkvirtualenv: command not found(bash:mkvirtualenv:找不到命令)
问题描述
按照 Doug Hellman 的 virtualenvwrapper 帖子 上的说明后,我仍然无法启动测试环境.
After following the instructions on Doug Hellman's virtualenvwrapper post, I still could not fire up a test environment.
[mpenning@tsunami ~]$ mkvirtualenv test
-bash: mkvirtualenv: command not found
[mpenning@tsunami ~]$
需要注意的是,我使用的 WORKON_HOME 不在我的 $HOME 中.我尝试寻找 /usr/local/bin/virtualenvwrapper.sh 如 virtualenvwrapper 安装文档,但是不存在.
It should be noted that I'm using WORKON_HOME that is not in my $HOME. I tried looking for /usr/local/bin/virtualenvwrapper.sh as shown in the virtualenvwrapper installation docs, but it does not exist.
如果这很重要,我正在运行 CentOS 6 和 python 2.6.6.
I'm running CentOS 6 and python 2.6.6, if this matters.
# File: ~/.bash_profile
# ...
export WORKON_HOME="/opt/virtual_env/"
source "/opt/virtual_env/bin/virtualenvwrapper_bashrc"
推荐答案
解决方案一:
由于某种原因,virtualenvwrapper.sh 安装在 /usr/bin/virtualenvwrapper.sh 下,而不是 /usr/local/bin 下>.
For some reason, virtualenvwrapper.sh installed in /usr/bin/virtualenvwrapper.sh, instead of under /usr/local/bin.
我的 .bash_profile 中的以下内容有效...
The following in my .bash_profile works...
source "/usr/bin/virtualenvwrapper.sh"
export WORKON_HOME="/opt/virtual_env/"
如果不使用 virtualenvwrapper_bashrc
解决方案 2:
或者,如下所述,您可以利用 virtualenvwrapper.sh 已经在 shell 的 PATH 中的机会,只需发出 source `which virtualenvwrapper.sh`
Alternatively as mentioned below, you could leverage the chance that virtualenvwrapper.sh is already in your shell's PATH and just issue a source `which virtualenvwrapper.sh`
这篇关于bash:mkvirtualenv:找不到命令的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:bash:mkvirtualenv:找不到命令
基础教程推荐
- matplotlib 设置 yaxis 标签大小 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
- 在 Python 中将货币解析为数字 2022-01-01
