Ubuntu 10.10 上的 virtualenvwrapper - Python
无法让 virtualenvwrapper 在 Ubuntu 10.10 桌面上工作。
mkvirtualenv test_env
返回:
错误:virtualenvwrapper 在您的路径中找不到 virtualenv
我严格按照安装说明进行操作。
有什么想法吗?
can't get virtualenvwrapper to work on Ubuntu 10.10 desktop.
mkvirtualenv test_env
returns:
ERROR: virtualenvwrapper could not find virtualenv in your path
I followed the install instructions to the letter.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 MacPorts 包管理器(版本 py27-virtualenvwrapper @3.2_0)安装 virtualenvwrapper 时,我收到了同样的消息。我也通过 MacPorts 安装了 virtualenv。我让它工作的唯一方法是将 bash 环境添加
:
export VIRTUALENVWRAPPER_VIRTUALENV=virtualenv-2.7
到我的 .profile 文件中 。根本不是 Ubuntu 10.10,但如果你的设置中有一个可用的
virtualenv
,也许 virtualenvwrapper 需要一个指针......I got that same message when installing virtualenvwrapper using the MacPorts package manager (version py27-virtualenvwrapper @3.2_0). I had virtualenv installed, also via MacPorts. The only way I could get it to work was adding the bash environmental:
export VIRTUALENVWRAPPER_VIRTUALENV=virtualenv-2.7
to my .profile file. Not at all Ubuntu 10.10, but if you've got a working
virtualenv
on your set-up, maybe virtualenvwrapper needs a pointer ...那么,virtualev 是否与 virtualenvwrapper 安装在同一个 python 中?它需要单独安装virtualenv。
Well, is virtualev installed in the same python as virtualenvwrapper? It requires installing virtualenv separately.