如何使用pip 從GitHub 儲存庫安裝特定分支
當嘗試pip 安裝儲存庫的特定分支時,使用者可能會如果URL格式不正確,則會遇到404 錯誤。 Google 建議使用 pip install https://github.com/user/repo.git@branch 部分正確,但它錯過了關鍵的一步。
解:
要使用 pip成功安裝特定分支,正確的語法是:
pip install git+https://github.com/user/repo.git@branch
其他注意事項:
以上是如何使用pip正確安裝特定的GitHub分支?的詳細內容。更多資訊請關注PHP中文網其他相關文章!