Carambola Python Basics Tutorial - Chapter 2: Python installation

I CSDN blog column: HTTPS: //blog.csdn.net/yty_7
Github Address: https: //github.com/yot777/Python-Primary-Learning

 

2 .1  Python Download

2.2 Unix & Linux platform installed Python

2 .3  Windows platform installation Python

 

2 .1 Python Download

Python latest source code, binary documents, news, etc. may Python view the official website:

Python 's official website: https://www.python.org/

You can be downloaded from the following link Python documentation, including HTML, PDF and PostScript documents and other formats.

Python Document Download: https://www.python.org/doc/

2.2 Unix & Linux platform installed Python

In Unix & Linux installed on the platform Python steps:

Open WEB browser to access https://www.python.org/downloads/source/

  • Select the appropriate Unix / Linux source code archive. ( Example : Download Python 3.7.3 version of the source package )

     

Step 1. download and extracting archive. ( Tar - xzvf package name unzip address )

(Optional) If you need to customize some options to modify Modules / Setup

Step 2. execution  ./ the configure script

Step 3. make

Step 4. make install

After the above operation, Python will be installed in / usr / local / bin directory, Python libraries are installed in / usr / local / lib / pythonXX, XX for your use of the Python version number.

 

2 .3 the Window S platform mounted Python

In the Windows platform installation Python steps:

Open WEB browser to access https://www.python.org/downloads/windows/

Step 1. Select the download list Window S platform installation package in the format: Python-xyz.exe file, XYZ version you want to install.

步骤2. 下载后,双击下载包,进入 Python 安装向导,安装非常简单,你只需要使用默认的设置一直点击"下一步"直到安装完成即可。

 

参考教程:

廖雪峰的Python教程

https://www.liaoxuefeng.com/wiki/1016959663602400

廖雪峰的Java教程

https://www.liaoxuefeng.com/wiki/1252599548343744

Python3 教程 | 菜鸟教程
https://www.runoob.com/python3/

 

如果您觉得本篇本章对您有所帮助,欢迎关注、评论、点赞!Github欢迎您的Follow、Star!

发布了25 篇原创文章 · 获赞 3 · 访问量 2175

Guess you like

Origin blog.csdn.net/yty_7/article/details/104103494