Python常見Error

被放养的研究生發表於2024-11-20

https://stackoverflow.com/questions/48399498/git-executable-not-found-with-gitpython-bad-git-executable
ImportError: cannot import name 'iterative' from partially initialized module 'scipy.sparse.linalg.isolve' (most likely due to a circular import) (C:\App\anaconda3\envs\pytorch\lib\site-packages\scipy\sparse\linalg\isolve_init.py)
完美解決,解決方法(順序):

  1. 使用pip uninstall 解除安裝包
  2. 使用conda uninstall 解除安裝包
  3. 使用conda clean --all 清理快取
  4. 重新安裝包

問題分析:使用conda list 檢視包版本只有一個高版本(scipy-1.13.1),實際上是兩個,我第一次解除安裝scipy,顯示Successfully uninstalled scipy-1.13.1,然後使用conda list 檢視顯示還有一個低版本(scipy-1.7.3),第二次解除安裝後,顯示Successfully uninstalled scipy-1.7.3,然後使用conda list 檢視該包已經解除安裝乾淨,最後重新安裝所需包,成功解決問題

相關文章