Use pip requirements.txt in the root of the repository. My PyCharm automatically asks me to install the missing requirements or if the installed versions are not equal to requirements.txt .
You can install packages from requirements.txt :
your_python_root_pip install -r requirements.txt
You can get already installed packages with versions:
your_python_root_pip freeze -r requirements.txt
For more information, see Help Help. requirements.txt example:
flask==0.9 flask-testing==0.4 blinker==1.2 uwsgi==1.4.5 nose coverage pep8
tbicr
source share