Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PythonPipBuilder:ResolveDependencies - {numpy==1.20.3(wheel)}

sam build fails with the following error:

Error: PythonPipBuilder:ResolveDependencies - {numpy==1.20.3(wheel)}

I tried sam build --use-container, but get the same error.

like image 655
NaSh Avatar asked May 11 '21 16:05

NaSh


1 Answers

apparently, the new numpy 1.20.3 released May 10 2021 is not compatible. I specified the previous version of numpy in my requirements.txt file, and it worked just fine.

$cat requirements.txt
numpy==1.20.2
like image 158
NaSh Avatar answered Nov 07 '22 21:11

NaSh