PyTorch
安装给了我
conda install pytorch torchvision -c pytorch
然后我尝试将conda.in
作为文本文件如下
pytorch
torchvision
jupyter
gensim
numpy
matplotlib
conda install --file conda.in
有效
但是当我这样添加-c
pytorch
torchvision -c pytorch
jupyter
gensim
numpy
matplotlib
它引发错误
CondaValueError:无法解析conda.in中的'torchvision -c pytorch'
如何根据官方文档正确完成文件安装?
答案 0 :(得分:1)
修改文件以正确指定规范:
pytorch::pytorch
pytorch::torchvision
jupyter
gensim
numpy
matplotlib
正确的规格格式为:(channel::)name(version(build_string))
阅读conda 4.4.0 changelog了解更多示例。