我在尝试创建新环境时收到此错误。IE
conda create -n jupyter python=3.6 -y
Preparing transaction: done
Verifying transaction: failed
CondaVerificationError: The package for ncurses located at /Users/yaroslavvb/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/yaroslavvb/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.
有什么建议吗?
我尝试了以下方法但没有成功(conda 4.5.11(
conda update -n base conda
conda update conda
conda install -f conda
conda install -f ncurses -y
conda update ncurses
conda uninstall ncurses -y
我定期使用 ITerms,我怀疑 iterm 自动更新并破坏了一些路径
我今天也遇到了和你类似的问题。这是我的解决方案: 由于它显示在此软件包中找不到某些内容,并且我们无法使用conda uninstall ncurses
命令卸载ncurses
,我只是手动删除了此软件包: (在您的情况下,它应该如下(
rm -r /Users/yaroslavvb/anaconda3/pkgs/ncurses-6.1-h0a44026_0
然后我们可以安装ncurses
,指定它的版本和我们刚刚删除的版本和构建:
conda install ncurses=6.1=h0a44026_0
顺便说一句,我的错误信息指向/path/to/miniconda2/pkgs/ncurses-6.1-hf484d3e_1002
,所以我只是删除了这个文件夹并使用稍微修改的命令重新安装它。
看起来 ncurses 包刚刚损坏(6.1-h0a44026_0(,当前版本似乎可以工作