[python 入門] 安裝與執行 python
快速紀錄撰寫 python 與在 vscode 快速執行。
python
Python 的安裝有分兩種:一種到 Python 官網下載後安裝即可,另一種便是使用 Anaconda 安裝,Anaconda 會幫你管理 Python 的環境及函式庫,是一個 all-in-one 的 Python 開發環境,很適合初學者。
Python 3.8.5 (default, Sep 3 2020, 21:29:08) [MSC v.1916 64 bit (AMD64)] :: Anaconda, Inc. on win32
安裝完就會有 Anaconda-Navigator 應用中也會有 Jupyter,可以在網頁上執行 Python 程式碼還有 Spyder 等等,你也可以從中看到安裝
pip 的基本功能就是安裝套件 The Python Package Installer(下面再詳細介紹)
pip –version pip 20.2.4 from D:\ProgramData\Anaconda3\lib\site-packages\pip (python 3.8)
ref:Python 教學第 0 章-Anaconda 完整安裝教學及搭建 vscode 開發環境
vscode 下執行
vscode 1.plugin 安裝 python 2.新增檔案 xxx.py
1 | print("Hello world! Python") |
這時就可以對他按下 Run,就會在終端機執行了。如果沒裝 1 的話第二步也會跳出建議喔
pip 指令
1 | 安裝模組 $ pip install |
[python 入門] 安裝與執行 python