安装了pip,但找不到virtualenvwrapper_bashrc在哪里

发布于 2024-10-17 06:18:33 字数 159 浏览 4 评论 0原文

如何找到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

赏烟花じ飞满天 2024-10-24 06:18:33

你说你安装了pip,但你没有说你是否安装了virtualenvwrapper,它既不包含在pip中,也不包含在virtualenv

如果您使用或类似的方式安装了 virtualenvwrapper

pip install virtualenvwrapper

,则可以使用以下命令查找它的位置:

$ which virtualenvwrapper.sh

在版本 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 installed virtualenvwrapper, which is neither included with pip nor virtualenv.

If you have installed virtualenvwrapper using

pip install virtualenvwrapper

or something similar, then you can use the following to find where it is located:

$ which virtualenvwrapper.sh

In ver 1.x, the file was called virtualenvwrapper_bashrc; however, Doug Hellmann—the creator of virtualenvwrapper—changed the name to virtualenvwrapper.sh starting in version 2.x.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文