我正在运行Mac OS X 10.14.1(18B75),Python 3.7.0和conda 4.5.11。我试图创建一个新环境:
conda create -n cv-final python pip
它要求安装新软件包,然后按“ y”继续,但随后引发错误:
Preparing transaction: done
Verifying transaction: failed
CondaVerificationError: The package for ncurses located at /Users/johan/anaconda3/pkgs/ncurses-6.1-h0a44026_0
appears to be corrupted. The path 'share/terminfo/69/iTerm.app'
specified in the package manifest cannot be found.
CondaVerificationError: The package for ncurses located at /Users/johan/anaconda3/pkgs/ncurses-6.1-h0a44026_0
appears to be corrupted. The path 'share/terminfo/69/iTerm2.app'
specified in the package manifest cannot be found.
我已经按照建议的here尝试过conda clean --packages --tarballs
,但是没有运气。
运行
conda env create cv-final
确实创建了一个新的空环境,但是尝试安装软件包
conda install -n cv-final python pip
仍然会出现相同的错误。