I created a VirtualEnv in PyCharm to install my Python packages. I wanted to install this fork of the django project from GitHub.
https://github.com/django-nonrel/dj
I was struggling to find a way to do this within the PyCharm UI, but it is possible through the integrated Python console:
Then use pip from within the console:
import pip pip.main(['install','packagename'])