python 通过Conda安装Fastai失败,并出现404错误

1sbrub3j  于 2023-09-29  发布在  Python
关注(0)|答案(3)|浏览(71)

我试图在我的计算机上安装fastaiconda,但我得到一个错误。
我使用conda install -c fastchan fastai并得到:
CondaHTTPError:HTTP 404 Not Found
我这边有什么需要改进的吗。它看起来像是一个死URL,有没有一个解决方案?

new9mtju

new9mtju1#

为了解决这个问题,我安装了来自conda-forge(https://anaconda.org/conda-forge/platformdirs)而不是fastchan(https://anaconda.org/fastchan/platformdirs/files)的platformdirs:

conda install --channel conda-forge platformdirs

安装完platformdirs后,我可以成功安装fastai

conda install -c fastchan fastai
xkftehaa

xkftehaa2#

fastai库正在使用Conda,但出现错误。但是,您提供的命令(conda install -c fastchan fastai)似乎无效。Fastchan似乎不是fastai的有效通道,-c标志用于指定Conda应该搜索包的通道。
您可以使用以下命令使用Conda安装fastai:

conda install -c pytorch -c fastai fastai

该命令指定Pytorch和Fastai通道,以确保获得正确的依赖项

1l5u6lss

1l5u6lss3#

我在fastchan频道上也遇到了错误,@Saurabh Dey的回答对我很有效。
值得一提的是,你也可以通过fastai's Github repo安装fastai。您需要安装Pytorch。然后安装fastcore(一个依赖项):

git clone https://github.com/fastai/fastcore #Clone the fastcore repo
conda install fastcore -c fastai #Install fastcore

然后安装fastai的dev版本。这使得以后使用git pull更新库变得很容易。

git clone https://github.com/fastai/fastai
pip install -e "fastai[dev]"

相关问题