python 安装pycaret库未完成由于一个错误

mdfafbf1  于 2023-01-08  发布在  Python
关注(0)|答案(2)|浏览(230)

我试图安装pycaret库,但给我一个错误。
我已经尝试更新pip,但没有任何变化

error: could not create 'build\bdist.win-amd64\wheel\.\sklearn\datasets\tests\data\openml\292\api-v1-json-data-list-data_name-australian-limit-2-data_version-1-status-deactivated.json.gz': No such file or directory
  [end of output]note: This error originates from a subprocess, and is likely not a problem with pip. ERROR: Failed building wheel for scikit-learn Failed to build scikit-learn

错误:无法为scikit-learn构建wheel,安装基于pyproject. toml的项目需要scikit-learn

uhry853o

uhry853o1#

您要安装的是什么版本的pycaret?您使用的是什么版本的python?请注意pycaret 2.3.x不能安装在python 3.9或更高版本中。
我建议安装最新版本3.0.0rc2,它可以在python 3.9中运行
第一个月

j0pj023g

j0pj023g2#

PyCaret已在以下64位系统上测试并受支持:

  • Python 3.6 - 3.8
  • 仅适用于Ubuntu的Python 3.9
  • Ubuntu 16.04或更高版本
  • Windows 7或更高版本

根据documentation,PyCaret与sklearn >= 0.23.2兼容。
其他要求包括:

pandas 
scipy<=1.5.4 
seaborn 
matplotlib 
IPython 
joblib 
scikit-learn==0.23.2 
ipywidgets 
yellowbrick>=1.0.1 
lightgbm>=2.3.1 
plotly>=4.4.1 
wordcloud 
textblob 
cufflinks>=0.17.0 
umap-learn 
pyLDAvis 
gensim<4.0.0 
spacy<2.4.0 
nltk 
mlxtend>=0.17.0 
pyod 
pandas-profiling>=2.8.0 
kmodes>=0.10.1 
mlflow 
imbalanced-learn==0.7.0 
scikit-plot 
Boruta 
pyyaml<6.0.0 
numba<0.55

相关问题