Top "Requirements.txt" questions

requirements.

Requirements.txt greater than equal to and then less than?

I have this line in my requirements file django>=1.10,<1.11 Does that mean I need to have Django version &…

python django requirements.txt
How to install python module extras with pip requirements.txt file

The pip requirements.txt documentation says that extras may be installed using a line like MyPackage==3.0 [PDF] So in my …

python pip requirements.txt
Python: How to detect unused packages and remove them

I use pip freeze > requirements.txt to gather all packages I installed. But after developing many days, some packages …

python python-2.7 package requirements.txt
pip freeze without dependencies of installed packages

When I do pip freeze I get the packages I've explicitly installed plus those packages that are dependencies of those …

python pip requirements.txt
Installing Python Dependencies locally in project

I am coming from NodeJS and learning Python and was wondering how to properly install the packages in requirements.txt …

python python-2.7 pip requirements.txt
Include .whl installation in requirements.txt

How do I include this in the requirements.txt file? For Linux: pip install http://download.pytorch.org/whl/cu75/…

python pip pytorch requirements.txt
Ignoring some requirements when installing pip requirements

I am using requirements.txt to install requirements for my virtualenv. I use ansible for deployments which installs requirements on …

python bash pip requirements.txt
Quiet output from pip via requirements file?

pip has a -q/--quiet flag that works ideally from the command line. I'm using an automated deployment process (Amazon …

pip amazon-elastic-beanstalk requirements.txt
Add pip requirements to docker image in runtime

I want to be able to add some extra requirements to an own create docker image. My strategy is build …

python docker pip requirements.txt