1. 程式人生 > >Windows 下錯誤除錯: WinError 5: Acess is denied 和 ImportError: numpy.core.multiarray failed to import

Windows 下錯誤除錯: WinError 5: Acess is denied 和 ImportError: numpy.core.multiarray failed to import

1.Python在刪除pillow,操作時出現 WinError 5: Acess is denied

原因:刪除檔案沒有許可權,需要獲得管理員許可權

解決方案:(1)右鍵開啟cmd,點選以管理員身份執行;

                   (2) 進入檔案C://Windows//System32,然後執行

 

2.安裝完opencv後,在Ipython中輸入import cv2, 報錯:

ImportError: numpy.core.multiarray failed to import

 

解決方法:解除安裝numpy,重新安裝

在cmd中執行:pip uninstall numpy

然後執行 pip install numpy