在 Windows 上安装 virtualenvwrapper
我已经使用 easy_install 在 Windows 上安装了 virtualenv 和 virtualenvwrapper。但是mkvirtualenv
丢失了。我尝试在我的机器上搜索,但找不到。我不知道如何解决。你有什么想法吗?
I've installed virtualenv and virtualenvwrapper on Windows using easy_install. But mkvirtualenv
is missing. I tried to search on my machine but I couldn't find it. I don't know how to solve it. Do you have any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
Windows 命令 shell 的 virtualenv 助手:
virtualenvwrapper-win 是一组 DOS 风格批处理文件(在 PowerShell 中不起作用)。
env.py 是一个 Python2 脚本 (博客文章)。
virtualenv helpers for Windows command shell:
virtualenvwrapper-win is a set of DOS-style batch files (doesn't work in PowerShell).
env.py is a single Python2 script (blog post).
我已将 virtualenvwrapper 移植到 Powershell。 从 BitBucket 存储库获取它!
I've ported virtualenvwrapper to Powershell. Grab it from the BitBucket repo!
mkvirtualenv 是一个 bash 脚本,因此您需要运行 bash shell 才能使用它。
mkvirtualenv 是 mkvirtualenv_bashrc 脚本中的 bash 函数,
您需要在 Windows 下从 cygwin 运行它。 (您可以从中调用本机 python,而不需要 cygwin python)
mkvirtualenv is a bash script so you need to run bash shell to make use of it.
mkvirtualenv is a bash function in the mkvirtualenv_bashrc script
You will need to run this from cygwin under Windows. (You can call a native python from this and not need a cygwin python)
virtualenvwrapper 适用于 Linux/Unix,但是 这篇文章 提供了一些对 Windows 用户的 virtualenv 支持(Bitbucket 源代码位于此处)。
virtualenvwrapper is for Linux/Unix, but this post gives some virtualenv support for Windows users (Bitbucket source is here).
在Windows中,我们在创建虚拟环境时需要使用
virtualenv
而不是mkvirtualenv
In windows we need to use
virtualenv
notmkvirtualenv
while creating virtual environments对我有用的(就 2021 年而言)如下:
./Install.ps1
What worked for me (speaking in 2021) is the following:
./Install.ps1
从 git repo 克隆 virtualenvwrapper-powershell 并构建它,对我有用
Cloning the virtualenvwrapper-powershell from git repo and building it, worked for me