centos8 安装python3、pip、pyinstall

centos8安装python3
安装python3:https://www.cnblogs.com/qq931399960/p/11664594.html


```bash
# 步骤:1、输入python3看有没有 
# 2、使用yum -y install python 安装 
# 3、指定版本安装:yum -y install python39
[root@localhost ~]# python3
-bash: python3: command not found
[root@localhost ~]# python
-bash: python: command not found
[root@localhost ~]# whereis python
python: /usr/lib/python3.6 /usr/lib64/python3.6 /usr/include/python3.6m /usr/share/man/man1/python.1.gz[root@localhost ~]# yum -y install python
Repository extras is listed more than once in the configuration
Last metadata expiration check: 1:57:22 ago on Tue 18 Jun 2024 09:25:45 AM CST.
No match for argument: python
There are following alternatives for "python": python2, python36, python38, python39
Error: Unable to find a match: python
# 需要指定版本
[root@localhost ~]# yum -y install python39
# 安装省略
Repository extras is listed more than once in the configuration
Complete!

在这里插入代码片

安装pyinstall
[安装pyinstaller](https://www.jianshu.com/p/1614723f3197)第一种方法:下载PyInstaller进行安装
```cpp
wget -c https://github.com/pyinstaller/pyinstaller/releases/download/v3.3.1/PyInstaller-3.3.1.tar.gz
tar -zxvf PyInstaller-3.3.1.tar.gz
python setup.py install
pyinstaller --version

第一种方法:使用pip安装(推荐)


centos8 python3安装 pyinstaller
在CentOS 8上安装Python 3和PyInstaller,你可以按照以下步骤操作:首先,确保系统已安装了Python 3。如果没有安装,可以使用以下命令安装Python 3:sudo dnf install python3
接下来,安装PyInstaller。你可以使用pip,但首先需要确保你有pip3:sudo dnf install python3-pip
然后,使用pip3安装PyInstaller:pip3 install pyinstaller
验证PyInstaller是否安装成功:pyinstaller --version
如果你遇到权限问题,请确保你有正确的权限来安装软件包,或者使用sudo执行命令。如果PyInstaller不是通过Python 3的pip安装的,你可能需要使用pip3来安装。

pyinstaller打包

编写测试python程序
vim test.py

#!/usr/bin/python -w
# -*- coding:utf8 -*-import osdef main():print("print the result of 'ls -al':")print("这是一个测试代码")os.system("ls -al")if __name__ == '__main__':main()

使用python程序直接调用该程序,结果如下:


[root@localhost soft]# python3 test.py
print the result of 'ls -al':
这是一个测试的python
总用量 3392
drwxr-xr-x.  6 root root     139 617 20:31 .
drwxr-xr-x. 15 root root     170 617 20:07 ..
drwxr-xr-x.  3 root root      18 617 20:31 build
drwxr-xr-x.  2 root root      18 617 20:31 dist
drwxr-xr-x.  2 root root      33 617 20:31 __pycache__
drwxr-xr-x.  9 1000 1000    4096 617 20:15 PyInstaller-3.3.1
-rw-r--r--.  1 root root 3458638 127 2021 PyInstaller-3.3.1.tar.gz
-rw-r--r--.  1 root root     214 617 20:13 test.py
-rw-r--r--.  1 root root     709 617 20:31 test.spec

大写的-F表示生成单一文件。

pyinstaller -F test.py

运行结果:


[root@localhost soft]# pyinstaller -F test.py
29 INFO: PyInstaller: 3.3.1
29 INFO: Python: 3.6.8
30 INFO: Platform: Linux-4.18.0-348.el8.x86_64-x86_64-with-centos-8.5.2111
30 INFO: wrote /usr/local/soft/test.spec
31 INFO: UPX is not available.
32 INFO: Extending PYTHONPATH with paths
['/usr/local/soft', '/usr/local/soft']
32 INFO: checking Analysis
32 INFO: Building Analysis because out00-Analysis.toc is non existent
32 INFO: Initializing module dependency graph...
33 INFO: Initializing module graph hooks...
34 INFO: Analyzing base_library.zip ...
2071 INFO: running Analysis out00-Analysis.toc
2092 INFO: Caching module hooks...
2095 INFO: Analyzing /usr/local/soft/test.py
2098 INFO: Loading module hooks...
2098 INFO: Loading module hook "hook-encodings.py"...
2138 INFO: Loading module hook "hook-pydoc.py"...
2139 INFO: Loading module hook "hook-xml.py"...
2290 INFO: Looking for ctypes DLLs
2290 INFO: Analyzing run-time hooks ...
2294 INFO: Looking for dynamic libraries
2514 INFO: Looking for eggs
2514 INFO: Using Python library /lib64/libpython3.6m.so.1.0
2516 INFO: Warnings written to /usr/local/soft/build/test/warntest.txt
2531 INFO: Graph cross-reference written to /usr/local/soft/build/test/xref-test.html
2537 INFO: checking PYZ
2538 INFO: Building PYZ because out00-PYZ.toc is non existent
2538 INFO: Building PYZ (ZlibArchive) /usr/local/soft/build/test/out00-PYZ.pyz
2773 INFO: Building PYZ (ZlibArchive) /usr/local/soft/build/test/out00-PYZ.pyz completed successfully.
2775 INFO: checking PKG
2775 INFO: Building PKG because out00-PKG.toc is non existent
2775 INFO: Building PKG (CArchive) out00-PKG.pkg
4606 INFO: Building PKG (CArchive) out00-PKG.pkg completed successfully.
4608 INFO: Bootloader /usr/local/lib/python3.6/site-packages/PyInstaller-3.3.1-py3.6.egg/PyInstaller/bootloader/Linux-64bit/run
4608 INFO: checking EXE
4608 INFO: Building EXE because out00-EXE.toc is non existent
4608 INFO: Building EXE from out00-EXE.toc
4608 INFO: Appending archive to ELF section in EXE /usr/local/soft/dist/test
4630 INFO: Building EXE from out00-EXE.toc completed successfully.

查看目录:

[root@localhost soft]# ll
总用量 8
drwxr-xr-x. 3 root root  18 617 20:31 build
drwxr-xr-x. 2 root root  18 617 20:31 dist
drwxr-xr-x. 2 root root  33 617 20:31 __pycache__
-rw-r--r--. 1 root root 214 617 20:13 test.py
-rw-r--r--. 1 root root 709 617 20:31 test.spec

dist就是打包结果目录,进入直接运行:

[root@localhost soft]# cd dist/
[root@localhost dist]# ll
总用量 6156
-rwxr-xr-x. 1 root root 6300160 617 20:31 test
[root@localhost dist]# ./test
print the result of 'ls -al':
这是一个测试的python
总用量 6156
drwxr-xr-x. 2 root root      18 617 20:31 .
drwxr-xr-x. 5 root root      82 617 20:36 ..
-rwxr-xr-x. 1 root root 6300160 617 20:31 test

docker打包python程序
docker打包python程序:https://developer.baidu.com/article/details/2805093

详细:https://www.jb51.net/python/3144726ij.htm

全过程:
https://blog.csdn.net/zxstone/article/details/138638918?utm_medium=distribute.pc_relevant.none-task-blog-2defaultbaidujs_baidulandingword~default-8-138638918-blog-130821367.235v43pc_blog_bottom_relevance_base8&spm=1001.2101.3001.4242.5&utm_relevant_index=11

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/29330.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Zookeeper:启动占用8080端口

zookeeper最近的版本中有个内嵌的管理控制台是通过jetty启动,也会占用8080 端口。 通过查看zookeeper的官方文档,发现有3种解决途径: (1).删除jetty。 (2)修改端口。 一种是在启动脚本中增加…

【linux】操作系统使用wget下载网络文件,内核tcpv4部分运行日志

打印日志代码及运行日志(多余日志被删除了些): 登录 - Gitee.comhttps://gitee.com/r77683962/linux-6.9.0/commit/55a53caa06c1472398fac30113c9731cb9e3b482 测试步骤和手段: 1、清空 kern.log; 2、使用wget 下载linux-6.9.tar.gz&…

切割游戏介绍

简介 上大学时,在学校实验室里玩过一个貌似使用VC写的小游戏,一个小球在界面上四处游荡,玩家使用鼠标切割背景,将背景切割剩余到一定的百分比后,就胜利了,后边的背景图会全部展示出来。 使用qt的qml技术&a…

初始化一个Android项目时,Android Studio会自动生成一些文件和目录结构,以帮助你快速上手开发

当你初始化一个Android项目时,Android Studio会自动生成一些文件和目录结构,以帮助你快速上手开发。这些文件和目录各自有其特定的功能和用途。下面我为你解释一下这些自动生成的内容: 1. app 目录 这是你的应用模块的根目录,包…

django学习入门系列之第二点《浏览器能识别的标签1》

文章目录 文件的编码(head)网站表头信息(head)标题&#xff08;body&#xff09;div和span往期回顾 文件的编码(head) <!--浏览器会以"UTF-8"这种编码来读取文件--> <meta charset"UTF-8">网站表头信息(head) <title>Title</title&…

使用 Iceberg、Tabular 和 MinIO 构建现代数据架构

现代数据环境需要一种新型的基础架构&#xff0c;即无缝集成结构化和非结构化数据、轻松扩展并支持高效的 AI/ML 工作负载的基础架构。这就是现代数据湖的用武之地&#xff0c;它为您的所有数据需求提供了一个中心枢纽。然而&#xff0c;构建和管理有效的数据湖可能很复杂。 这…

为何选择企业微信作为私域运营的首选工具?

随着数字化营销的不断深入&#xff0c;私域流量的价值愈发凸显。在众多的私域运营工具中&#xff0c;企业微信凭借其独特的功能和优势&#xff0c;逐渐成为了众多企业的首选。本文将详细阐述为何选择企业微信作为私域运营的首选工具&#xff0c;并从多个维度进行对比分析。 一…

总台,地方卫视媒体邀约新闻报道采访怎么做?

传媒如春雨&#xff0c;润物细无声&#xff0c;大家好&#xff0c;我是51媒体网胡老师。 总台对选题要求非常严格&#xff0c;在想做总台新闻报道之前&#xff0c;让我们先来了解下总台对新闻选题有哪些要求&#xff1a; 一、新闻价值 社会意义&#xff1a;新闻报道的首要任务…

【CHIP】LTC2991 读取温度电压电流 调试实例

文章目录 0. ENV1. LTC2991 数据说明1. 数据计算公式2. 寄存器概述1. 管脚使能寄存器2. 芯片使能寄存器 2. 软件实现1. 概述2. 源码(部分)3. 参考log 0. ENV 软件系统&#xff1a;略 LTC2991&#xff1a;VCC3.3 温度&#xff1a;温控接v1-v2 / v2-v3 / … (双端采样)电压&#…

C#面:C# 类的执行顺序?

C# 类的执行顺序可以分为以下几个步骤&#xff1a; 静态字段初始化&#xff1a;在类的第一次使用之前&#xff0c;静态字段会被初始化。静态字段的初始化顺序是按照它们在代码中的声明顺序进行的。静态构造函数&#xff1a;如果类中定义了静态构造函数&#xff0c;它会在类的第…

QT工作笔记

文章目录 QDialog的accept()和reject()介绍QPushButton提示属性样式表QComboBox QDialog的accept()和reject()介绍 accept() 和reject() 这两个槽函数都会和close() 一样关闭dialogaccept() 关闭后 返回了Dialog::Acceptedreject() 关闭后 返回了Dialog::Rejected这样当我们需…

Eclipse项目导入笔记大全踩坑大全

文章目录 关于Eclipse启动Tomcat时报错Error: Could not create the Java Virtual MachineWEB-INF/lib/servlet-api.jar not loadedresourcemanager java.lang.ClassNotFoundException: javax.activation.DataSourceEclipse怎么配置jdk在eclipse上配置tomcat&#xff08;包括解…

Ubutnu服务器修改DNS

TL;DR # dns行为的配置文件 /etc/resolv.conf # 针对使用 systemd-resolved 服务的配置文件&#xff1b;编辑 /etc/systemd/resolved.conf # 重启systemd-resolved服务 systemctl restart systemd-resolved # 备份 mv /etc/resolv.conf /etc/resolv.conf.bak # 创建新文件 ln …

【算法专题--链表】K个一组翻转链表 -- 高频面试题(图文详解,小白一看就懂!!!)

目录 一、前言 二、题目描述 三、解题方法 ⭐双指针 -- 采用哨兵位头节点 &#x1f95d; 什么是哨兵位头节点&#xff1f; &#x1f34d; 案例图解 四、总结与提炼 五、共勉 一、前言 K个一组翻转链表 这道题&#xff0c;可以说是--链表专题--&#xff0c;最经典…

LeetCode 1789, 6, 138

目录 1789. 员工的直属部门题目链接表要求知识点思路代码 6. Z 字形变换题目链接标签思路代码 138. 随机链表的复制题目链接标签思路代码 1789. 员工的直属部门 题目链接 1789. 员工的直属部门 表 表Employee的字段为employee_id&#xff0c;department_id和primary_flag。…

静态变量和实例变量的区别?

静态变量和实例变量的区别 语法定义上的区别&#xff1a; 静态变量&#xff1a;在声明变量时使用 static 关键字。实例变量&#xff1a;不使用 static 关键字。 程序运行时的区别&#xff1a; 静态变量&#xff1a; 属于类本身&#xff0c;不属于任何实例对象。当类被加载时…

【开发利器】OpenCV实验大师最新版本又又发布了

最新发布 大家好&#xff0c;OpenCV实验大师 最新发布的安装包已经支持Python3.10了。同时继续支持Python3.8的安装包&#xff0c;OpenCV实验大师工具软件本次从Python3.8升级到Python3.10是为了方便更多基于Python3.10的开发者使用。同时修复了一批软件错误。 安装配置 下载…

mysql8.0删除了权限怎么都还在,是连接工具 navicat 的缓存,删了连接,重新连test 账号,权限就好了

删除了权限怎么都还在,是连接工具 navicat 的缓存,删了连接,重新连test 账号,权限就好了 1. 检查全局权限 首先&#xff0c;检查 mysql.user 表中是否有全局权限&#xff1a; SELECT * FROM mysql.user WHERE usertest AND host%;在查询结果中&#xff0c;如果所有权限列&am…

SpringBoot修改banner

在resources目录下创建banner.txt文件 到该网站下选择banner https://www.bootschool.net/ascii-art 点击拷贝&#xff1a; 粘贴到banner.txt中&#xff0c;保存 重新运行项目即可&#xff1a;

对 PLC AC 模块的 TRIAC 输出进行故障排除

在大多数离散 PLC 系统中&#xff0c;排除输出设备故障的过程相当简单。如果输出端正常工作&#xff0c;则在“关闭”时应测量 0 V&#xff0c;在“开启”时应测量满源电压。对于数字和继电器输出&#xff0c;情况确实如此。对于由 TRIAC 驱动的 AC 输出也应如此&#xff0c;但…