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?
| |||||||
feedback
|
|
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) | |||
|
feedback
|
|
virtualenv helpers for Windows: Here is one written as DOS-style batch files (no Powershell necessary): https://github.com/davidmarble/virtualenvwrapper-win Here is another one written for Python itself:
http://justindriscoll.us/2009/03/virtualenv-helper-for-windows.html | |||||
feedback
|
|
virtualenvwrapper is for Linux/Unix, but this post gives some virtualenv support for Windows users (Bitbucket source is here). | |||
|
feedback
|
|
I've ported virtualenvwrapper to Powershell. Grab it from the BitBucket repo! | ||||
|
feedback
|