Please help me with this. I do this on Fedora 16.
My virtual environment: /home/username/Desktop/.pythonenv
Now pay attention to the point. Since this is a hidden directory, I had to create a symbolic link to make Pycharm in the "enter" directory.
sudo ln -s /home/yeukhon/Desktop/.pythonenv /home/yeukhon/Desktop/sypythonenv
Now I can use this virtual environment. However, two problems arose, and I am not sure that the first is related to the second.
a. Missing GTK and GST
Here are two screenshots. There is no GTK and GST in virtual vython ... I have no idea why.


B. Django is not importable in this environment
I tried to run a Django project under virtualenv (project1), but I cannot. I can run the same project through Terminal.
[ yeukhon@localhost ~]$ cd Desktop/djangoapp/project1 [ yeukhon@localhost mysite]$ source /home/yeukhon/Desktop/.pythonenv/project1/bin/activate (project1)[ yeukhon@localhost mysite]$ python2.7 manage.py runserver
Question
How to make it work in Pycharm using my virtual Python interpreter?
Does No. 1 have anything in common with No. 2?
How to make GTK and GST appear in my virtualenv?
Thank you for your time.
source share