我试图在我的计算机上安装fastai与conda,但我得到一个错误。我使用conda install -c fastchan fastai并得到:CondaHTTPError:HTTP 404 Not Found我这边有什么需要改进的吗。它看起来像是一个死URL,有没有一个解决方案?
fastai
conda
conda install -c fastchan fastai
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:
platformdirs
xkftehaa2#
fastai库正在使用Conda,但出现错误。但是,您提供的命令(conda install -c fastchan fastai)似乎无效。Fastchan似乎不是fastai的有效通道,-c标志用于指定Conda应该搜索包的通道。您可以使用以下命令使用Conda安装fastai:
conda install -c pytorch -c fastai fastai
该命令指定Pytorch和Fastai通道,以确保获得正确的依赖项
1l5u6lss3#
我在fastchan频道上也遇到了错误,@Saurabh Dey的回答对我很有效。值得一提的是,你也可以通过fastai's Github repo安装fastai。您需要安装Pytorch。然后安装fastcore(一个依赖项):
fastchan
fastcore
git clone https://github.com/fastai/fastcore #Clone the fastcore repo conda install fastcore -c fastai #Install fastcore
然后安装fastai的dev版本。这使得以后使用git pull更新库变得很容易。
git pull
git clone https://github.com/fastai/fastai pip install -e "fastai[dev]"
3条答案
按热度按时间new9mtju1#
为了解决这个问题,我安装了来自conda-forge(https://anaconda.org/conda-forge/platformdirs)而不是fastchan(https://anaconda.org/fastchan/platformdirs/files)的platformdirs:
安装完
platformdirs
后,我可以成功安装fastai
:xkftehaa2#
fastai库正在使用Conda,但出现错误。但是,您提供的命令(conda install -c fastchan fastai)似乎无效。Fastchan似乎不是fastai的有效通道,-c标志用于指定Conda应该搜索包的通道。
您可以使用以下命令使用Conda安装fastai:
该命令指定Pytorch和Fastai通道,以确保获得正确的依赖项
1l5u6lss3#
我在
fastchan
频道上也遇到了错误,@Saurabh Dey的回答对我很有效。值得一提的是,你也可以通过fastai's Github repo安装fastai。您需要安装Pytorch。然后安装
fastcore
(一个依赖项):然后安装fastai的dev版本。这使得以后使用
git pull
更新库变得很容易。