- Matplotlib 2.x By Example
- Allen Yu Claire Chung Aldrin Yim
- 121字
- 2021-07-02 19:34:30
Linux
Most recent Linux distributions come with Python 3.4+ preinstalled. You can check this out by typing python3 in the terminal. If Python 3 is installed, you should see the following message, which shows more information about the version:
Python 3.4.3 (default, Nov 17 2016, 01:08:31) [GCC 4.8.4] on Linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
If Python 3 is not installed, you can install it on a Debian-based OS, such as Ubuntu, by running the following commands in the terminal:
sudo apt update
sudo apt install Python3 build-essential
The build-essential package contains compilers that are useful for building non-pure Python packages. You may need to substitute apt with apt-get if you have Ubuntu 14.04 or older.
推薦閱讀
- 云原生Spring實(shí)戰(zhàn)
- Apache Spark Graph Processing
- Access 2010數(shù)據(jù)庫基礎(chǔ)與應(yīng)用項(xiàng)目式教程(第3版)
- HTML5+CSS3+jQuery Mobile APP與移動(dòng)網(wǎng)站設(shè)計(jì)從入門到精通
- Zabbix Performance Tuning
- Laravel Application Development Blueprints
- PHP與MySQL權(quán)威指南
- LabVIEW入門與實(shí)戰(zhàn)開發(fā)100例(第4版)
- 大話C語言
- Building Scalable Apps with Redis and Node.js
- Python編程基礎(chǔ)與數(shù)據(jù)分析
- 匯編語言程序設(shè)計(jì)
- D Cookbook
- C語言程序設(shè)計(jì)
- Android性能優(yōu)化之道:從底層原理到一線實(shí)踐