NEO
NEO

Reputation: 79

how to install python module via terminal?

Recently while doing a webcrawler project in python, I was using PyCharm and had to download and install an external module.

Installing on PyCharm

Does anyone knows how to install those modules using unix terminal?

Upvotes: 1

Views: 2343

Answers (1)

Luca Angioloni
Luca Angioloni

Reputation: 2253

Pycharm uses pip underneath. If you have pip installed you just type on the terminal:

pip install "module name"

Upvotes: 1

Related Questions