安装了pip,但找不到virtualenvwrapper_bashrc在哪里
如何找到 virtualenvwrapper_bashrc 文件的位置?
我往里看:
/System/Library/Frameworks/Python.framework/Versions/2.6/bin
但我没看到?
How can I find out where the virtualenvwrapper_bashrc file is?
I'm looking in:
/System/Library/Frameworks/Python.framework/Versions/2.6/bin
But I don't see it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你说你安装了
pip
,但你没有说你是否安装了virtualenvwrapper
,它既不包含在pip
中,也不包含在virtualenv
。如果您使用或类似的方式安装了 virtualenvwrapper
,则可以使用以下命令查找它的位置:
在版本 1.x 中,该文件名为 virtualenvwrapper_bashrc;然而,Doug Hellmann(virtualenvwrapper 的创建者)从 2.x 版本开始将名称更改为
virtualenvwrapper.sh
。You say that you installed
pip
, but you don't say whether or not you installedvirtualenvwrapper
, which is neither included withpip
norvirtualenv
.If you have installed
virtualenvwrapper
usingor something similar, then you can use the following to find where it is located:
In ver 1.x, the file was called
virtualenvwrapper_bashrc
; however, Doug Hellmann—the creator of virtualenvwrapper—changed the name tovirtualenvwrapper.sh
starting in version 2.x.