Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing virtualenvwrapper on Windows

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?

like image 666
pocoa Avatar asked Apr 11 '10 03:04

pocoa


People also ask

Where is virtualenvwrapper installed?

That installation installs virtualenvwrapper in the /usr/local/bin directory.


3 Answers

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).

like image 199
ColdCold Avatar answered Oct 24 '22 06:10

ColdCold


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

like image 21
guillermooo Avatar answered Oct 24 '22 05:10

guillermooo


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)

like image 11
mmmmmm Avatar answered Oct 24 '22 06:10

mmmmmm