Reputation: 79
Recently while doing a webcrawler project in python, I was using PyCharm and had to download and install an external module.
Does anyone knows how to install those modules using unix terminal?
Upvotes: 1
Views: 2343
Reputation: 2253
Pycharm uses pip underneath. If you have pip installed you just type on the terminal:
pip install "module name"
Upvotes: 1