Hi all,
I cannot get my head around using virtualenv's in PyA.
Usually when I create virtual env in my laptop, I create it using
virtualenv my_demo_env
which then creates a directory structure
my_demo_env/
bin/
Scripts/
and so on/
then I can create run.py in the root of my_demo_env and say python run.py to run my app. Please correct me if I am wrong. I recently got used to using virtualenv's
But in PythonAnywhere, you create a virtualenv, like above, the folder gets created here :
/home/username/.virtualenvs
no matter how many you create all of them end up here
/home/username/.virtualenvs /my_env/ /my_other_env/
and /my_env seems to have
/bin
/include
/lib
so I believe you are not supposed to have your app in under /my_env but it should be in the same level as my_env?
and the directory .virtualenvs directory has run.py and someother files....
When I have multiple virtualenv's like this, how can I run any specific app ?
Hope my question is clear....