PyCharm使用筆記(一) 常見問題及解決方案

2021-09-10 21:56:53 字數 951 閱讀 7609

1.安裝模組時出現

error: microsoft visual c++ 14.0 is required. get it with 「microsoft visual c++ build tools」:

解決辦法:

2.使用pytesseract時出現錯誤:

pytesseract.pytesseract.tesseractnotfounderror: tesseract is not installed or it』s not in your path

原因:未安裝tesseract

第二步:安裝

執行exe,安裝。

第三步:配置環境變數(全域性、使用者變數都要新增)

把安裝路徑(截止到tesseract-ocr)新增到path裡

檢查:開啟終端輸入:tesseract -v,可以看到版本資訊

重點:

你以為解決了?並沒有。

cmd終端可以執行,pycharm ide裡的終端卻無法執行。

原因是tesseract的py** 路徑的反斜槓問題!

修改:

tesseract_cmd = 『d:/program files/tesseract-ocr/tesseract.exe』   #改為正確路徑、斜槓取反!
浪費了好多時間,感謝樓下博主的分享(能看出來大家都挺崩潰的):

3.pycharm提示no module named cv2(安裝python-opencv成功)

前提是你正常安裝了opencv-python

解決這個辦法只需在pycharm ->run->editconfigurations 新增環境變數(pythonpath) 值是是你python安裝目錄下的site-packages路徑

pycharm使用筆記

一 將數字視覺化暨meshgrid contourf contour的使用。contour 繪製等高線 contourf 填充等高線 兩個的返回值值是一樣的 return values are the same 實際上contourf 相當於 contour filled。常用引數語法 mp.con...

pycharm使用常見設定

file setting editor font 快捷鍵 ctrl alt s a.ctrl alt s,調出設定視窗 選中想要換的版本即可,如沒有,進入下一項,新增編譯器 b.在軟體右下角點interpreter settings,然後參見下一項新增2.7版 1.ctrl alt s,輸入 int...

Jupyter Notebook使用筆記(一)

notebook 自帶一組快捷鍵,能提高效率 感 jio 有點要脫離滑鼠了 下面大概總結一下,也方便以後使用。notebook裡每乙個叫做cell。command mode 和 edit mode。在乙個cell中,按下enter,進入edit模式,按下esc,進入command 模式在乙個cell...