2021年2月17日 星期三

Python3 環境設定(一)

設定目標:
  • 在 CentOS 8 上安裝 Python 3.8
  • 在 CentOS 8 上使用 VSCode 做為 Python IDE 環境
快速操作流程:
  1. 在 CentOS 8 安裝 Python 3.8 版本:
    #dnf install epel-release
    #dnf install python38
    #alternatives --config python3
    (選擇第二個 python3.8 的選項)
    #python3 --version
    
  2. 安裝 VSCode :
    #dnf install code
    
  3. 使用一般使用者來啟動 VSCode:
    $code &
    
  4. 在 VSCode 中,選擇 Python 解譯器:
    a. <Ctrl>+<Shift>+<p>
    b.輸入並執行 Python: Select Interpreter

    c.在選單中選擇 python 3.8.3

    d.視窗左下方的紫色工作列,為 Python 解譯器選擇按鍵,按下即可更換解譯器:
  5. 建立一個 Python 檔案:hello.py
    a.按下工作列上的 File -> NewFile
    b.輸入程式內容:
    msg = "Hello World"
    print(msg)
    

    c.按下工作列上的 File -> Save As ...
    d.選擇儲存的目錄,並且輸入檔案名稱:hello.py
    e.按下右上方綠色箭頭按鍵,即可看到執行結果!
參考文獻:
  • https://djangogirlstaipei.gitbooks.io/django-girls-taipei-tutorial/content/django/admin.html
  • http://dokelung-blog.logdown.com/posts/220832-django-notes-6-manage-your-system-admin