排查「ImportError:沒有名為requests 的模組」
嘗試將requests 模組匯入到Python 程式碼時,您可能會遇到以下錯誤「匯入錯誤:沒有名為請求的模組。」出現此問題的原因是Requests 是預設Python發行版中未包含的外部函式庫。
解決錯誤
要解決此錯誤並使用 Requests 模組,你必須安裝它。安裝方法因作業系統而異。
macOS/Linux:
python -m pip install requests(或Python 3 的python3 -m pip install requests)
CentOS:sudo yum install python-requestsCentOS:sudo yum install python-requests
CentOS:sudo yum install python-requestsWindows
Windows手動安裝來源:
以上是為什麼我收到'ImportError:沒有名為 requests 的模組”以及如何修復它?的詳細內容。更多資訊請關注PHP中文網其他相關文章!