I use gitbash on windows (7, 64bit). I tried to create a venv using python 3.4's built-in venv module by calling python -m venv venv
, and it created successfully, but the resultant venv does not contain a bash activate script, only a .bat
and .ps1
.
The virtualenv library for python 2.6.6 (version 13.0.1) created the following four files in the venv/Scripts/
folder: activate
, activate.bat
, activate.ps1
, and activate_this.py
.
As the gitbash console cannot use the bat or powershell scripts, and I don't really want to have to move back to the windows cmd prompt or to a VM, is there any way I can get pyvenv to create a shell script for me while I'm on windows?