Closed jwmueller closed 2 years ago
Trying to pip install current requirements.txt file is giving me this error:
ERROR: Cannot install -r requirements.txt (line 10), -r requirements.txt (line 11), -r requirements.txt (line 8), autogluon-core[all]==0.5.2 and scipy==1.8.0 because these package versions have conflicting dependencies.
The conflict is caused by:
The user requested scipy==1.8.0
scikit-learn 1.0.2 depends on scipy>=1.1.0
seaborn 0.11.2 depends on scipy>=1.0
statsmodels 0.13.2 depends on scipy>=1.3
autogluon-core[all] 0.5.2 depends on scipy<1.8.0 and >=1.5.4
To fix this you could try to:
1. loosen the range of package versions you've specified
2. remove package versions to allow pip attempt to solve the dependency conflict
Will look into this as I add dependencies for each notebook.
pip freeze
to figure out which package versions they used and then how to officially specify these dependencies.