1、python解释器安装
更新于:2024年3月26日
python解释器安装
目录
[toc]
1、windows上安装python
==💘 实战:windows上安装python-2022.9.5(测试成功)==
- 实验环境
python-3.8.6
win10
- 实验软件
软件位置:python-3.8.6-amd64.exe
下载地址:https://www.python.org/ftp/python/3.6.4/python-3.6.4-amd64.exe
==安装过程==
具体安装过程如下:
为了不去设置环境变量,我选择Customize installation安装,并且勾选Add Python 3.8 to PATH。
一直点击下一步,直到安装完成即可。
安装完成后,我们来查看下环境变量,其被默认添加到了环境变量下了:
==验证效果==
- 验证下效果:
实验结束。
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
方法2:源码编译安装(测试成功)【荐】
https://onedayxyy.cn/docs/centos7-install-python3.8.6
FAQ
python解释器下载地址
https://www.python.org/ftp/python
关于我
我的博客主旨:
- 排版美观,语言精炼;
- 文档即手册,步骤明细,拒绝埋坑,提供源码;
- 本人实战文档都是亲测成功的,各位小伙伴在实际操作过程中如有什么疑问,可随时联系本人帮您解决问题,让我们一起进步!
🍀 微信二维码 x2675263825 (舍得), qq:2675263825。
🍀 微信公众号 《云原生架构师实战》
🍀 网站
🍀 语雀
https://www.yuque.com/xyy-onlyone
🍀 csdn https://blog.csdn.net/weixin_39246554?spm=1010.2135.3001.5421
🍀 知乎 https://www.zhihu.com/people/foryouone
最后
好了,关于本次就到这里了,感谢大家阅读,最后祝大家生活快乐,每天都过的有意义哦,我们下期见!