將置放於 github 的程式碼 Clone 一份到本地的方法, 以 https://github.com/zoominonline/ImgLabel 為例

  1. 安裝 git Client

  2. 於 Windows Terminal 執行
    git clone https://github.com/zoominonline/ImgLabel.git

  3. 此時已經clone 完整程式到 ImgLabel 子目錄下
    cd ImgLabel

  4. 假設要做標示的所有圖像檔都放置於 C:\YOUR IMAGES 目錄下
    python main.py 'C:\YOUR IMAGES'

註: 如何在 Visual Studio Code 開發 Python 並用 github 版本管理

  1. 首先當然要安裝好 Python 環境

  2. 下載安裝 Visual Studio Code, (簡稱 VS Code)

  3. 安裝 git client, 也要於 github.com 註冊並登入帳號

  4. 安裝 VS Code 的 git extension, 按下 [Install the GitHub Pull Requests and Issues extension ]

  5. 環境設定, 於終端機執行

    • git config --global user.name "註冊github用的帳號名稱"

    • git config --global user.email "註冊github用的email address"

  6. 記得在專案裡額外加上一個檔案: .gitignore, 目的是排除一些不該上傳到 github 的檔案或目錄 (例如: 屬於你個人的資料檔, 執行過程中產生的暫存檔, 編譯檔), 可參考範本, 它主要是執行過程中產生的暫存檔, 編譯檔, 屬於你個人的資料檔要額外加. 例如: 我就自己再補加2行:
    desktop.ini
    .vscode/