I need to install a few python packages in a Docker container via requirements.txt
, using pip install
. One of the packages is dask
. However, when installing it, it throws an error because it cannot find the package toolz
. The question has been answered already here, i.e. by typing
pip install "dask[dataframe]"
However, I need to fix it by adding the line in the requirements.txt
. Something like:
pandas==0.23.4
dask==1.0.0
???dask[dataframe]???
How should it look like in the requirements file? What should I write in place of the ???