DEV Community

Waylon Walker
Waylon Walker

Posted on • Originally published at waylonwalker.com

4 1

Nested requirements.txt in python

python requirements text files can in fact depend on each other due to the fact that you can pass pip install arguments right into your
requirements.txt file. The trick is to just prefix the file with a
-r flag, just like you would if you were installing it with pip
install

try it out

Lets create two requirements files in a new directory to play with.

mkdir requirements-nest cd requirements-nest touch requirements.txt requirements_dev.txt
Enter fullscreen mode Exit fullscreen mode

Then add the following to each requirements file.

# requirements.txt
kedro[pandas.ParquetDataSet]
Enter fullscreen mode Exit fullscreen mode
# requirements_dev.txt
-r requirements.txt
ipython
Enter fullscreen mode Exit fullscreen mode

Installing

Installing requirements_dev.txt will install both ipython and pandas since it includes the base requirements file.

# this will install only pandas
pip install -r requirements.txt

# this will install both ipython and pandas
pip install -r requirements_dev.txt
Enter fullscreen mode Exit fullscreen mode

Links

This is covered in the pip user guide, but it is not obvious that this can be done in a requirements.txt file.

Top comments (0)

👋 Kindness is contagious

Discover a treasure trove of wisdom within this insightful piece, highly respected in the nurturing DEV Community enviroment. Developers, whether novice or expert, are encouraged to participate and add to our shared knowledge basin.

A simple "thank you" can illuminate someone's day. Express your appreciation in the comments section!

On DEV, sharing ideas smoothens our journey and strengthens our community ties. Learn something useful? Offering a quick thanks to the author is deeply appreciated.

Okay