Is there a possibility to see all pip installed packages in Pycharm? Because I have the Problem: I write in PyCharm and it works fine, but now I want to move the project to a server... And now I don't know how can I quickly export this
type in terminal
pip list
this will show all the installed requirements in the terminal.
try the following line to update all installed requirements into the requirements.txt file
pip freeze > requirements.txt
then in the server after making a virtualenv run the following command to install all the requirements
pip install -r requiremnets.txt