- Matplotlib for Python Developers
- Aldrin Yim Claire Chung Allen Yu
- 116字
- 2021-08-27 18:48:16
Python installation for Linux
Most Linux distributions have Python 3.4 preinstalled. You may confirm this by typing python3 in the Terminal. If you see the following, it means Python 3.4 is present:
Python 3.6.3 (default, Oct 6 2017, 08:44:35) [GCC 5.4.0 20160609] on linux Type "help", "copyright", "credits" or "license" for more information. >>>?
If the Python shell does not appear at the command, you can install Python 3 with apt, the Linux software management tool:
sudo apt update
sudo apt install Python3 build-essential
The build-essential package contains compilers that are useful for building non-pure Python packages. Meanwhile, you may need to substitute apt with apt-get if you have Ubuntu 14.04 or older.
推薦閱讀
- OpenStack Cloud Computing Cookbook(Third Edition)
- Advanced Quantitative Finance with C++
- 從零開始構建企業級RAG系統
- Spring Cloud Alibaba微服務架構設計與開發實戰
- SQL for Data Analytics
- Python進階編程:編寫更高效、優雅的Python代碼
- WordPress 4.0 Site Blueprints(Second Edition)
- Learning AngularJS for .NET Developers
- 移動增值應用開發技術導論
- Unity 2017 Game AI Programming(Third Edition)
- Java程序設計教程
- Java Web開發基礎與案例教程
- MongoDB Administrator’s Guide
- Office VBA開發經典:中級進階卷
- 深入理解MySQL主從原理