出现的问题
在一个cycleGAN的工程中,需要用的keras_contrib库,根据网上的方法均使用下述语句:
pip install git+https://www.github.com/keras-team/keras-contrib.git
开始,提示为安装git,因此采用下述代码安装git(失败了):
pip install git
为此,写本博客解决该问题
安装git
开始采用pip install git失败,以为是pip没有更新,因此使用下述语句更新:
python -m pip install --upgrade pip
然而中途出现了bug,pip包出现问题。随后找了很多博客终于将pip重新修复。 随后采用
conda install git
完成了git的安装。
安装keras_contrib
然后又兴冲冲的使用pip install git+…,结果还是失败(估计是因为被墙了,所以使用git下载失败); 因此直接去对应keras_contrib网站上https://github.com/keras-team/keras-contrib把包下载下来,然后从pycharm中的Terminal中输入命令进入到下载的keras_contrib包中,运行下述语句完成安装(注意,控制台要进入到keras_contrib包所在的目录):
python setup.py install
最终完成了安装。
|