Open hspark1212 opened 1 year ago
Apparently, scikit-learn didn't provide a wheel for python3.10 in version 1.0.1. They fixed that on version 1.0.2: https://github.com/scikit-learn/scikit-learn/issues/21511
I also tried pip installing on version 3.8.18 and had a problem while compiling something
Cython.Compiler.Errors.CompileError: sklearn/ensemble/_hist_gradient_boosting/splitting.pyx
However, the repo's last version updated the setup.py to make the requirements less restrict. Cloning and installing using the setup.py works fine for me both on python 3.8.18 and 3.10.13
This issue also causes pip install matbench
to currently fail on Google Colab notebooks.
While pip install git+https://github.com/materialsproject/matbench.git
does work, a new release to update PyPy would be appreciated 🙏
Even with that fix, there are dependency issues on import:
ContextualVersionConflict: (scikit-learn 1.2.2 (/usr/local/lib/python3.10/dist-packages), Requirement.parse('scikit-learn~=1.3'), {'matminer'})
Hi,
Thank you for developing this great repo.
I have a trouble in installing matbench with python 3.10 using
pip install matbench
. The error might be occurred due to sklearn==1.0.1. I'm wondering if the fixing version of sklearn can be omitted, for example, sklearn>=1.0.1.Thank you in advance for your answering.