Could not find a version that satisfies the requirement torch==1.0.1.post2 (from autokeras) (from versions: 0.1.2, 0.1.2.post1) No matching distribution found for torch==1.0.1.post2 (from autokeras)
pip install autokeras时,总是出现上面torch版本问题,尝试用了 torch==1.0.1和torch==1.1.0版本都无法安装。
最后只能降版本安装autokeras,pip install autokeras==0.3.7,这个版本对应的torch==1.0.1版本
在安装的过程tensorflow,numpy等版本可能降低,安装完autokeras后可以再升级到原来版本或最新版本
我在安装过程中,遇到scikit-learn模块无法卸载问题
Cannot uninstall 'scikit-learn'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
通过pip install --ignore-installed scikit-learn命令解决的