- Mastering OpenCV 4 with Python
- Alberto Fernández Villán
- 71字
- 2021-07-02 12:07:08
Installing Python on Linux
On Debian derivatives such as Ubuntu, use APT to install Python. Afterwards, it is recommended to upgrade the pip version. pip (https://pip.pypa.io/en/stable/) is the PyPA (https://packaging.python.org/guides/tool-recommendations/) recommended tool for installing Python packages:
$ sudo apt-get install python3.7
$ sudo pip install --upgrade pip
To verify that Python has been installed correctly, open a Command Prompt or shell and run the following command:
$ python3 --version
Python 3.7.0
推薦閱讀
- 微信公眾平臺與小程序開發:從零搭建整套系統
- JavaScript:Functional Programming for JavaScript Developers
- Apache Spark 2.x Machine Learning Cookbook
- Elastic Stack應用寶典
- C語言程序設計案例式教程
- Magento 1.8 Development Cookbook
- Building an RPG with Unity 2018
- Mastering Apache Maven 3
- Python極簡講義:一本書入門數據分析與機器學習
- HTML5開發精要與實例詳解
- Odoo 10 Implementation Cookbook
- 貫通Tomcat開發
- Python機器學習
- Python深度學習入門:從零構建CNN和RNN
- TensorFlow 2.0深度學習應用實踐