When I try to activate my virtualenv from GIT bash mingw32 I do not get the expected response.
NOTE: py
is the folder for Python projects in my Google
To access your python in Windows 10, you need to add the .exe when creating the virtual environment.
$ python.exe -m venv Scripts
Then you can move into the Scripts folder you created for the virtual environment.
$ cd Scripts/
Now you have to call on it to activate the virtual environment.
$ source ./Scripts/activate
When you are done you just deactivate the virtual environment.
$ deactivate