gpt4 book ai didi

python - 无法下载和安装 scikit-learn

转载 作者:太空狗 更新时间:2023-10-29 21:45:47 24 4
gpt4 key购买 nike

我是 python 的新手。我想使用 KMean 代码,我想安装 scikit-learnsklearn

我使用这段代码尝试安装这些包:

pip install -U sklearn
pip install -U scikit-learn

但是我得到了这个错误:

Command /usr/bin/python -c "import setuptools, tokenize;__file__='/tmp/pip_build_reihaneh/sklearn/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-89YQB7-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /tmp/pip_build_reihaneh/sklearn
Storing debug log for failure in /home/reihaneh/.pip/pip.log

问题的原因是什么?

最佳答案

pip install -U <package> , pip install --upgrade <package> 的缩写, 将升级<package>到 pip 仓库中的最新稳定版本。

pip install <package>将安装最新的稳定版本 <package>在 pip repo 中。

区别在于升级与安装。你想要后者。

scikit-learn需要 scipynumpy ,所以这里是你应该发出的命令:

pip install numpy
pip install scipy
pip install scikit-learn

如果您已经有任何依赖项,只需插入 -Upip install 之间和包名。

如果您使用的是 Python 3.x,请替换 pippip3 .

关于python - 无法下载和安装 scikit-learn,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34571156/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com