How to install Python modules for Python 2 and 3 for VPS+ using Python PIP. This process requires Python PIP to be installed. PIP is used as a Python dependency manager, similar to npm for node.js or composer for PHP.
Install Python Module using Python PIP
IMPORTANT: This solution will require root access and is only available on VPS or dedicated hosting plans.
NOTE: This process requires Python PIP to be installed.
- For Python 2
Execute the following command in the terminal
pip install [Module name]
- For Python 3
Execute the following command in the terminal
pip3 install [Module name]
Comments
0 comments
Article is closed for comments.