How do you create a bash script to activate a Python virtual file?
I have a directory structure like:
.env bin activate ...other virtualenv files... src shell.sh ...my code...
I can activate my virtualenv:
user@localhost:src$ . ../.env/bin/activate (.env)user@localhost:src$
However, doing the same with the Bash script does nothing:
user@localhost:src$ cat shell.sh
What am I doing wrong?
python bash virtualenv
Cerin Oct 29 '12 at 12:57 2012-10-29 12:57
source share