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?

link|improve this question

1  
I guess it is not for Windows.. – pocoa Apr 11 '10 at 5:28
I've ported virtualenvwrapper to Powershell. Grab it from the BitBucket repo! – guillermooo Jul 31 '10 at 19:39
feedback

4 Answers

up vote 6 down vote accepted

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)

link|improve this answer
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
[Expired. Wayback Machine mirror; BitBucket repository; Blogspot original?]

link|improve this answer
1  
github.com/davidmarble/virtualenvwrapper-win works for me! – dim Jun 8 '11 at 0:09
feedback

virtualenvwrapper is for Linux/Unix, but this post gives some virtualenv support for Windows users (Bitbucket source is here).

link|improve this answer
feedback

I've ported virtualenvwrapper to Powershell. Grab it from the BitBucket repo!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.