cleanlab / examples

Notebooks demonstrating example applications of the cleanlab library
https://github.com/cleanlab/cleanlab
GNU Affero General Public License v3.0
114 stars 21 forks source link

Examples: dependencies in each notebook #10

Closed jwmueller closed 2 years ago

jwmueller commented 2 years ago
huiwengoh commented 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.