Posted on 17th September 2024|147 views
I started working on Python recently, I was assigned with a project written in python and it requires some installation. Can anyone tell me how to use the pip install requirements.txt?
Posted on 17th September 2024| views
Hey Megha,
If you are working on Windows OS:
python -m pip install -U pip setuptools
python -m pip install matplotlin
If you are working on Linux OS:
Remove matplotlib==1.3.1 from requirement.txt
Try to install with sudo apt-get install python-matplotlib
Run pip install -r requirements.txt or pip3 install -r requirement.txt
Pip freeze > requirement.txt