如何将python的项目部署到其他没有安装python环境的电脑

首先安装pyinstaller

命令pip3 install pyinstaller

到项目要运行的代码的那个.py档案(例如testPyinstaller.py),右键copy path,

(例如我的是D:\workspaceForPy\testPyinstaller\.idea\testPyinstaller.py)

到项目目录(idea右键show in explorer)

如何将python的项目部署到其他没有安装python环境的电脑_第1张图片

 

在cmd窗口运行 pyinstaller D:\workspaceForPy\testPyinstaller\.idea\testPyinstaller.py

如何将python的项目部署到其他没有安装python环境的电脑_第2张图片

 

然后项目目录里就有一个dist的文件夹,里面有一个testPyinstaller的文件夹,将这个文件夹压缩后,拿到其他电脑,解压缩后运行里面的testPyinstaller.exe

如何将python的项目部署到其他没有安装python环境的电脑_第3张图片

如何将python的项目部署到其他没有安装python环境的电脑_第4张图片

你可能感兴趣的:(python)