【Python程式設計從入門到實踐】 1 Linux搭建Python編譯環境
系列文章參考資料為《Python程式設計從入門到實踐》,原始碼為個人私有,未經允許不得轉載
技術交流群或資料新增微訊號:CoderAllen,回覆關鍵字即可
在Linux中搭建Python環境
Linux系統是為程式設計而設計的,因此在大多數Linux計算機中,都預設安裝了Python。編寫和維護Linux的人認為,你很可能會使用這種系統進行程式設計,他們也鼓勵你這樣做。鑑於此,要在 這種系統中程式設計,你幾乎不用安裝什麼軟體,也幾乎不用修改設定。
1. 檢查Python版本
預設使用的Python版本為Python 2.7.17
如果要退出Python並返回到終端視窗,可按Ctrl + D或執行命令exit()
allen@allen-linux:~/code/python$ python
Python 2.7.17 (default, Jul 20 2020, 15:37:01)
[GCC 7.5.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
要檢查系統是否安裝了Python 3
allen@allen-linux:~/code/python$ python3
Python 3.6.9 (default, Jul 17 2020, 12:50:27)
[GCC 8.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
2. 安裝文字編輯器
Geany是一款簡單的文字編輯器:它易於安裝;讓你能夠直接執行幾乎所有的程式(而無需通過終端來執行);使用不同的顏色來顯示程式碼,以突出程式碼語法
$ sudo apt-get install geany
3. 執行Hello World程式
在geany軟體中新建一個檔案hello.py,輸入下述程式碼
print("Hello Python!")
4. 在終端會話中執行Python程式碼
在終端中輸入如下程式碼:
>>> print("Hello Python!")
Hello Python!
>>>
相關文章
- 《Python程式設計:從入門到實踐》Python程式設計
- Python 程式設計從入門到實踐5Python程式設計
- Python專案實戰(一)《Python程式設計 從入門到實踐》Python程式設計
- Python 入門到精通(1):Windows 搭建 Python 開發環境PythonWindows開發環境
- 《Python程式設計:從入門到實踐》第2章習題Python程式設計
- python程式設計:從入門到實踐學習筆記-字典Python程式設計筆記
- 《python 程式設計從入門到實踐》序:學習目標Python程式設計
- 資源 | 小白必收!《Python程式設計 從入門到實踐》Python程式設計
- Python程式設計:從入門到實踐(第2版)第1章習題答案Python程式設計
- 三週刷完《Python程式設計從入門到實踐》的感受Python程式設計
- python程式設計:從入門到實踐學習筆記-函式Python程式設計筆記函式
- 《Python程式設計:從入門到實踐》 筆記(一)基礎知識Python程式設計筆記
- 程式設計入門18:Python生產環境程式設計Python
- Python Type Hints 從入門到實踐Python
- Python爬蟲建站入門手記(1):環境搭建Python爬蟲
- 7月讀書筆記-Python程式設計:從入門到實踐(未完進展中)筆記Python程式設計
- Python程式設計入門(1) (轉)Python程式設計
- Python入門到實踐-瞭解PythonPython
- 《Golang 從入門到跑路》之開發環境搭建Golang開發環境
- Python多執行緒程式設計深度探索:從入門到實戰Python執行緒程式設計
- Python資料分析入門(一):搭建環境Python
- python核心程式設計:入門Python程式設計的8個實踐性建議Python程式設計
- python程式設計:從入門到實踐學習筆記-使用者輸入和while迴圈Python程式設計筆記While
- Nestjs最佳實踐教程:1編碼環境搭建JS
- Python入門到實踐-計算機算數Python計算機
- Python入門到實踐-變數Python變數
- Python入門到實踐-Hello Python3Python
- 第一篇:《UNIX 環境高階程式設計》編譯環境的搭建程式設計編譯
- 求大神解答,《Python程式設計從入門到實踐》第94-95頁,外星人入侵Python程式設計
- Vue2.0 新手入門 — 從環境搭建到釋出Vue
- Python 指令碼高階程式設計:從基礎到實踐Python指令碼程式設計
- Linux系統下搭建基於Geany的Python程式設計環境LinuxPython程式設計
- Python 入門到精通(3):VS 2015 搭建開發環境Python開發環境
- 高通編譯環境搭建編譯
- openform環境搭建-編譯ORM編譯
- Python函數語言程式設計:從入門到走火入魔Python函數程式設計
- Python的函數語言程式設計,從入門到⎡放棄⎦Python函數程式設計
- Python程式設計入門Python程式設計