Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to install dask[complete]

Tags:

python

dask

I am trying to install dask[complete] via pip on Mac OSX, but I am always getting no matches found: dask[complete]. What is the best way to install dask[complete] library on Mac OSX?

pip install dask[complete]
zsh: no matches found: dask[complete]
like image 630
thotam Avatar asked May 25 '26 09:05

thotam


2 Answers

Some terminals handle this differently. I recommend placing "dask[complete]" in quotes:

pip install "dask[complete]"
like image 96
MRocklin Avatar answered May 26 '26 23:05

MRocklin


or with requirements.txt

awscli==1.16.69
botocore=1.13.0
boto3==1.9.79
dask[complete]
like image 35
Victor Villacorta Avatar answered May 26 '26 22:05

Victor Villacorta