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 6月 17 20:31 .
drwxr-xr-x. 15 root root 170 6月 17 20:07 ..
drwxr-xr-x. 3 root root 18 6月 17 20:31 build
drwxr-xr-x. 2 root root 18 6月 17 20:31 dist
drwxr-xr-x. 2 root root 33 6月 17 20:31 __pycache__
drwxr-xr-x. 9 1000 1000 4096 6月 17 20:15 PyInstaller-3.3.1
-rw-r--r--. 1 root root 3458638 12月 7 2021 PyInstaller-3.3.1.tar.gz
-rw-r--r--. 1 root root 214 6月 17 20:13 test.py
-rw-r--r--. 1 root root 709 6月 17 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 6月 17 20:31 build
drwxr-xr-x. 2 root root 18 6月 17 20:31 dist
drwxr-xr-x. 2 root root 33 6月 17 20:31 __pycache__
-rw-r--r--. 1 root root 214 6月 17 20:13 test.py
-rw-r--r--. 1 root root 709 6月 17 20:31 test.spec
dist就是打包结果目录,进入直接运行:
[root@localhost soft]# cd dist/
[root@localhost dist]# ll
总用量 6156
-rwxr-xr-x. 1 root root 6300160 6月 17 20:31 test
[root@localhost dist]# ./test
print the result of 'ls -al':
这是一个测试的python
总用量 6156
drwxr-xr-x. 2 root root 18 6月 17 20:31 .
drwxr-xr-x. 5 root root 82 6月 17 20:36 ..
-rwxr-xr-x. 1 root root 6300160 6月 17 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