当我通过Anaconda终端安装python软件包时,安装过程可以下载该软件包;但是,当它尝试解压缩并安装软件包时,该过程始终会中途中断并出现错误。在我看来,当进程执行时,它将尝试运行之前未完成的脚本文件。
例如,当我跑步时
conda install -c conda-forge openpyxl
它达到了以下步骤
Downloading and Extracting Packages
openpyxl-3.0.0 | 152 KB | ############################################################################ | 100%
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
然后会话跳出,下面是我在终端窗口中看到的内容
Downloading and Extracting Packages
openpyxl-3.0.0 | 152 KB | ############################################################################ | 100%
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
C:\Users\324013452>set "KERAS_BACKEND="
C:\Users\324013452>python C:\Users\324013452\AppData\Local\Continuum\anaconda3\etc\keras\load_config.py 1>temp.txt
C:\Users\324013452>set /p KERAS_BACKEND= 0<temp.txt
C:\Users\324013452>del temp.txt
C:\Users\324013452>python -c "import keras" 1>nul 2>&1
C:\Users\324013452>if errorlevel 1 (
有人知道发生了什么吗?如果以前是隐藏的半完成脚本,我可以在哪里找到并清理它?
非常感谢!