davidmarble / virtualenvwrapper-win

Port of Doug Hellmann's virtualenvwrapper to Windows batch scripts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

can not use parameter -p, but --python can work

ceo1207 opened this issue · comments

mkvirtualenv --python=C:\Python3\python3.exe test2
when i use the command as below, it works.
but
mkvirtualenv --p C:\Python3\python3.exe test2
show a error
The path =C:\python3\python3.exe (from --python==C:\python3\python3.exe) does not exist

commented

The following will work:

mkvirtualenv --python=\python34\python.exe test2

i.e. without the drive.

commented

Fixed in v.1.2.3