Skip to content Skip to sidebar Skip to footer

Pip Install Multiple Extra Dependencies Of A Single Package Via Requirement File

Some package, such as DVC allow you to install extra dependencies to use additional features: to install a single extra dependency, whether by command line or in a requirements.txt

Solution 1:

Of course, I found the solution right after posting, you just have to remove the space after the comma:

# requirements.txt
dvc[s3,gs]

pip install -r requirements.txt

Works fine

Post a Comment for "Pip Install Multiple Extra Dependencies Of A Single Package Via Requirement File"