0 votes
in Python by

How to use requirements.txt to install all dependencies in a python project

I am new to python. Recently I got a project written by python and it requires some installation. I run below command to install but got an error.
# pip install requirements.txt 
Collecting requirements.txt 
Could not find a version that satisfies the requirement requirements.txt (from versions: ) 
No matching distribution found for requirements.txt
Below is my requirements.txt file:
# cat requirements.txt 
ordereddict==1.1 
argparse==1.2.1 
python-dateutil==2.2 
matplotlib==1.3.1 
nose==1.3.0 
numpy==1.8.0 
pymongo==3.3.0 
psutil>=2.0
Is there an easy way to install all the required dependencies in this python project?

1 Answer

0 votes
by
If you are using Linux as your OS then you can follow the below-mentioned steps:-

Firstly, remove matplotlib==1.3.1 from requirements.txt

After that try to install it with sudo apt-get install python-matplotlib

Run pip install -r requirements.txt (Python 2), or pip3 install -r requirements.txt (Python 3)

pip freeze > requirements.txt

If you are using Windows as your OS then use the following steps:-

python -m pip install -U pip setuptools

python -m pip install matplotlib

Related questions

0 votes
asked May 17, 2020 in Python by sharadyadav1986
0 votes
asked Jun 28, 2020 in Python by Robindeniel
...