跳到主要内容

1、python解释器安装

更新于:2024年3月26日

python解释器安装

image-20220906073400802

目录

[toc]

1、windows上安装python

==💘 实战:windows上安装python-2022.9.5(测试成功)==

  • 实验环境
python-3.8.6
win10
  • 实验软件

软件位置:python-3.8.6-amd64.exe

image-20230906065128220

官网地址:https://www.python.org/

下载地址:https://www.python.org/ftp/python/3.6.4/python-3.6.4-amd64.exe

image-20230906065142683

==安装过程==

具体安装过程如下:

为了不去设置环境变量,我选择Customize installation安装,并且勾选Add Python 3.8 to PATH。

image-20211206072242879

image-20211206072311700

image-20211206072350871

一直点击下一步,直到安装完成即可。

安装完成后,我们来查看下环境变量,其被默认添加到了环境变量下了

image-20211206072636147

==验证效果==

  • 验证下效果:

image-20211206143219465

image-20211206143238065

实验结束。

2、Linux上安装python

下载地址:https://www.python.org/downloads/

方法1:yum安装(测试成功)

案例

方法1:yum安装:一条命令完成安装
Linux安装:yum install python36 -y

⚠️注意:一般常见的linux发行版都是自带python环境的,但一般多是python2版本的。

[root@xyy admin]#python
python python2 python2.7 python2.7-config python2-config python-config
[root@xyy admin]#python
Python 2.7.5 (default, Jun 20 2019, 20:27:34)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-36)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
>>> exit()
[root@xyy admin]

⚠️注意:虽然我们在linux上可以通过yum search python来查询yum源提供的python软件包,但是其会比python官网发布的版本要落后好几个版本,会差个1-2年。因此,我们想要在linux服务器上安装较新版本python软件包,就建议使用源码安装的方式去安装python软件。(不仅仅是python,其他软件也是一样的现象)

[root@xyy admin]#yum search python
……
ython3.i686 : Interpreter of the Python programming language
python3.x86_64 : Interpreter of the Python programming language
python3-debug.i686 : Debug version of the Python runtime
python3-debug.x86_64 : Debug version of the Python runtime
python3-devel.i686 : Libraries and header files needed for Python development
python3-devel.x86_64 : Libraries and header files needed for Python development
python3-idle.i686 : A basic graphical development environment for Python
python3-idle.x86_64 : A basic graphical development environment for Python
python3-libcomps.x86_64 : Python 3 bindings for libcomps library
python3-libs.i686 : Python runtime libraries
python3-libs.x86_64 : Python runtime libraries
python3-pip.noarch : A tool for installing and managing Python3 packages
python3-rpm-generators.noarch : Dependency generators for Python RPMs
python3-rpm-macros.noarch : RPM macros for building Python 3 packages
python3-setuptools.noarch : Easily build and distribute Python 3 packages
python3-test.i686 : The self-test suite for the main python3 package
python3-test.x86_64 : The self-test suite for the main python3 package
python3-tkinter.i686 : A GUI toolkit for Python
python3-tkinter.x86_64 : A GUI toolkit for Python
python3-wheel.noarch : Built-package format for Python
……

案例

##安装python3
sudo yum -y install python3 --disablerepo=epel

image-20240818091126057

方法2:源码编译安装(测试成功)【荐】

https://onedayxyy.cn/docs/centos7-install-python3.8.6

image-20240326125441822

FAQ

python解释器下载地址

https://www.python.org/ftp/python

image-20220907074745981

关于我

我的博客主旨:

  • 排版美观,语言精炼;
  • 文档即手册,步骤明细,拒绝埋坑,提供源码;
  • 本人实战文档都是亲测成功的,各位小伙伴在实际操作过程中如有什么疑问,可随时联系本人帮您解决问题,让我们一起进步!

🍀 微信二维码 x2675263825 (舍得), qq:2675263825。

image-20230107215114763

🍀 微信公众号 《云原生架构师实战》

image-20230107215126971

🍀 网站

https://onedayxyy.cn/

image-20230903071317400

🍀 语雀

https://www.yuque.com/xyy-onlyone

image-20230624093747671

🍀 csdn https://blog.csdn.net/weixin_39246554?spm=1010.2135.3001.5421

image-20230107215149885

🍀 知乎 https://www.zhihu.com/people/foryouone

image-20230107215203185

最后

好了,关于本次就到这里了,感谢大家阅读,最后祝大家生活快乐,每天都过的有意义哦,我们下期见!

image-20230107215844356