Reputation: 1993
I cant seem to figure out how to have the django libraries resolve in intelliJ. I'm using virtualenv, so the libraries are in venv/lib/python2.7/django . Any ideas?
Upvotes: 0
Views: 112
Reputation: 396
Go to File > Project Structure
, then choose SDKs
under Platform Settings
(on the left) and then add your virtualenv in there. After this, select your new Python virtualenv, press OK and you should be good to go.
Upvotes: 1