close

聽說大家都是寫程式寫到35歲就不想寫,我則是35歲才開始寫,看書自學遇到不少讓我卡關三天三夜的問題,最後靠google或不知怎麼的,簡單到不行地解決了~

 

1.安裝模組

打開 Terminal >輸入pip3 模組名

 

2. pyautogui 無法控制滑鼠

Security Preferences > Security & Privacy > Privacy > Accessibility -(按左下鎖頭,輸入電腦密碼解鎖,按+,搜尋Python.app、Terminal.app加入)

https://github.com/asweigart/pyautogui/issues/247

 

3.install tesseract又耗了我一個晚上

 

打開Terminal.app

貼上ruby -e "$(curl -fsSkL raw.github.com/mxcl/homebrew/go/install)"

 

出現

Warning: /usr/local/bin is not in your PATH.

==> Installation successful!

 

再輸入brew install tesseract

竟然出現-bash: brew: command not found

 

解決法是只要再輸入這行即可export PATH=/usr/local/bin:$PATH

 

接著即可輸入brew install tesseract

 

https://blog.csdn.net/sinat_32485497/article/details/78864869

 

4.使用預設應用程式打開檔案(又耗了我一個下午)

import subprocess

obj1=subprocess.run(['open','filename'],check=True)

print(obj1)

 

 

 

 

arrow
arrow
    文章標籤
    python 斜槓中年
    全站熱搜
    創作者介紹
    創作者 fishcha84 的頭像
    fishcha84

    musicholic

    fishcha84 發表在 痞客邦 留言(0) 人氣()