E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
pyinstaller
Python常见的免杀方式
使用
pyinstaller
生成的可执行文件本身就具有一定的免杀能力,但是在与杀毒软件对抗时,部分杀毒软件也可以通过分析可执行文件的内容来判断文件是否为恶意程序,导致这些代码仍然具有被杀的可能。
Lyx-0607
·
2024-02-10 04:22
笔记
golang zip压缩/解压缩用法
最近有个需求,需要写个脚本,但要编译为exe可执行文件,首先考虑python打包,奈何使用
pyinstaller
打包后,出现各种各样的运行错误,最后放弃了,改为golang重写。
csd_ct
·
2024-02-09 18:14
运维开发
golang
开发语言
后端
golang
压缩解压缩
《Python》Py源代码文件打包成无需环境就可运行的EXE程序
python3.x)第二:你要下载可以打包程序的第三方包,我用的是pip安装建议使用镜像下载,因为速度飞快:pipinstall-ihttps://pypi.tuna.tsinghua.edu.cn/simple
pyinstaller
云先森
·
2024-02-09 16:24
[NISACTF 2022]ezpython(
PyInstaller
封装程序反编译)
题目下载:ezpython准备*使用PyInstxtractor提取.pyc文件使用
PyInstaller
Extractor提取由PyiIstaller生成的可执行文件内容使用Uncompyle进行反编译软件版本
shangwenDD
·
2024-02-09 14:19
赛后题解
python
开发语言
python打包flask服务成exe文件,快速注册成windows服务
解决打包过大的问题用
Pyinstaller
打包Python程序+解决打包结果过大>>由于相关业务问题,需要在windows环境中开启多个flask服务,为了方便管理各个flask服务,需要进行注册成windows
承诺一时的华丽
·
2024-02-08 18:40
PyQt5----.ui文件转换为.py文件、.qrc文件转.py文件、如何打包pyqt程序以及打包的程序带有小图标。
1、.qrc文件转.py文件pyrcc5将demo.qrc转换成demo.py文件,并在主程序引入pyrcc5-odemo.pydemo.qrc2、如何打包pyqt程序
Pyinstaller
打包成.exe
HHH_LLL
·
2024-02-08 16:16
PyQt5
PyQt5
python3
Python文件打包,生成exe应用程序常见的错误
最好在文件名前加上-F指令)可能会出现以下错误:The‘typing’packageisanobsoletebackportofastandardlibrarypackageandisincompatiblewith
PyInstaller
.Pleasecondaremovetypingthentryagain
鲲鹏猿
·
2024-02-08 06:10
OpenCV
python
开发语言
后端
web
app
使用
pyinstaller
打包Django项目步骤以及可能出现的问题
目录基本步骤:一、打包过程1、安装
pyinstaller
2、生成.spec文件3、生成.exe文件4、运行.exe文件二、可能遇到的问题:1.启动服务时提示NomodulenamedXXX2.Templatesdoesnotexits3
吼吼qqqq
·
2024-02-07 18:17
Django学习
django
python
mysql
[Deepin - Pycharm调试记录] Matplot3D动态画图报错问题
和上一篇文章
Pyinstaller
索引系统库问题一样,最终
桃之夭夭ღ
·
2024-02-07 15:35
deepin
debug
pycharm
pycharm
3d
python
Python打包成可执行文件
在Python中,可以使用第三方库如
PyInstaller
或py2exe来将Python脚本打包成可执行文件。
酷爱码
·
2024-02-07 07:03
Python
python
开发语言
解决
PyInstaller
打包selenium脚本时弹出driver终端窗口
Python39\site-packages\selenium\webdriver\common\service.py添加creationflags在第77行添加:creationflags=134217728使用
PyInstaller
feifeidata
·
2024-02-07 00:09
selenium
python
测试工具
安装
PyInstaller
的保姆级教程
一、安装
PyInstaller
之前首先要安装Python,小编这里安装的是Python3.9,目前(2024/2/6)匹配到的最高版本的
PyInstaller
的版本为6.3.0。
大飞机杰森
·
2024-02-06 11:13
Python
python
将python打包成exe文件
1.安装
Pyinstaller
要将Python脚本打包成可执行文件(.exe),可以使用第三方工具来实现。以下是一种常用的方法,使用
PyInstaller
工具将Python脚本打包成独立的可执行文件。
不会写代码的小彭
·
2024-02-05 17:13
python
开发语言
Python新春烟花盛宴
环境需求python3.11.4及以上PyCharmCommunityEdition2023.2.5
pyinstaller
6.2.0(可选,这个库用于打包,使程序没有python环境也可以运行,如果想发给好朋友的话需要这个库哦
Want595
·
2024-02-05 14:40
《
一只有趣的兔子
》
python
开发语言
flask+
pyinstaller
实现mock接口,并打包到exe运行使用postman验证
flask代码fromflaskimportFlask,request,jsonifyapp=Flask(__name__)@app.route("/login",methods=['POST'])deflogin():username=request.json.get("username").strip()#用户名password=request.json.get("password").str
亚索不会吹风
·
2024-02-05 13:57
flask
postman
lua
PyInstaller
库基本介绍
将.py源代码转换成无需源代码的可执行文件.py文件通过
PyInstaller
转换为Windows系统可以直接运行的(.exe文件),Linux系统,MacOSX系统可以运行的。
蕾峰
·
2024-02-04 19:20
python基础
python
后端
Python中
Pyinstaller
使用方法
Pyinstaller
打包应用1、Windows+R键输入cmd切换到我们放文件的目录2、执行命令
Pyinstaller
-F-w-ipicture.icoxxx.py执行完毕会发现当前目录多了几个文件夹打开其中名为
中国之九岁
·
2024-02-04 19:50
python
windows
开发语言
pyInstaller
参数简介
原文(英文):https://
pyinstaller
.readthedocs.io/en/v3.3.1/usage.html通用参数参数名描述说明-h显示帮助无-v显示版本号无–distpath生成文件放在哪里默认
whatday
·
2024-02-04 19:50
pyinstaller
打包python文件为可执行exe详解
pyinstaller
打包python文件为可执行exe1、安装
pyinstaller
注:如果已经安装好请直接跳过该小结。单个文件打包在第三小节,有引用文件或第三方dll库的打包在第四小节。
笨笨的小菜鸡99
·
2024-02-04 19:49
python
pyinstaller
dll
exe
关于使用
pyinstaller
打包基于python的工程
python工程可采用
pyinstaller
进行打包,需提前安装
pyinstaller
模块,安装方法就是python-mpipinstall
pyinstaller
打包方法一(打包简单的程序的时候比较方便
1夜的终章1
·
2024-02-04 19:19
笔记
打包python工程
python
windows
打包工程
pyinstaller
python3.8_python3.8与
pyinstaller
冲突问题的快速解决方法
python3.8与
pyinstaller
冲突问题的快速解决方法安装
pyinstaller
安装的时候进入cmdpipinstall
pyinstaller
发现安装报错!
weixin_39766910
·
2024-02-04 19:49
pyinstaller
python3.8
python random库安装,详解python第三方库的安装、
PyInstaller
库、random库
python第三方库的安装
PyInstaller
库
PyInstaller
库能够在不同操作系统下将python源文件打包,变成直接可运行的可执行文件。
吴亦渊
·
2024-02-04 19:48
python
random库安装
使python脚本程序转变为可执行程序的第三方库_使用
Pyinstaller
转换.py文件为.exe可执行程序过程详解...
前言
pyinstaller
能够在Windows、Linux等操作系统下将Python脚本打包成可直接运行程序。使Python脚本可以在没有安装Python的环境中直接运行,方便共享。
weixin_39636102
·
2024-02-04 19:48
怎么查看python是否安装好了
pyinstaller
_Python
PyInstaller
安装和使用教程详解
Pyinstaller
这个库是我用pip下载的第一个模块。接下来通过本文给大家分享Python
PyInstaller
安装和使用教程,一起看看吧。
hzzonline
·
2024-02-04 19:18
Python第三方
pyinstaller
库参数详解
记录了当前
PyInstaller
6.2.0版本的所有参数及说明
pyinstaller
可以用一行命令将Python脚本生成多平台的应用程序,它有丰富的参数可以使用,如-F生成一个exe文件、指定Icon、
坑里技术员
·
2024-02-04 19:15
Python第三方库
python
开发语言
pyinstaller
打包文件的时候找不到对应的包或许是python版本不对
今天在使用
pyinstaller
进行打包的时候,之前用的好好地,换了一个虚拟环境,一直打包报包依赖的错误,试了很多方法,最后将python版本换到3.11并安装好程序所需要的依赖,最终成功运行程序。
顺利毕业(研)
·
2024-02-04 08:28
python
用python实现pdf按页切割,以及将pdf转成图片
我们经常遇到需要切割pdf的时候,但是常规手段很难做到我们可以利用python脚本来实现需要安装几个库tkPyPDF2PyMuPDF
pyinstaller
上图!
你好_cxy
·
2024-02-03 17:08
pdf
成功解决
pyinstaller
生成exe提示:Fatal error:
PyInstaller
does not include a pre-compiled bootloader
在使用
pyinstaller
生成exe,将编写完成的几个python文件封装成exe文件,但是出现了错误,提示Fatalerror:
PyInstaller
doesnotincludeapre-compiledbootloaderforyourplatform.Formoredetailsandinstructionshowtobuildthebootloadersee
迎着黎明那道光
·
2024-02-03 12:33
工欲善其事
必先利其器
python
exe
windows
将python程序设置成windows服务
步骤:自己经过研究和尝试,一般需要以下几个步骤:1.开发python程式,并将保存的文件命名为test_services.py(测试文件名字可以根据自己需要去写)2.使用
pyinstaller
将test
图灵追慕者
·
2024-02-02 12:53
服务器
运维
服务
services
Cefpython3基于
Pyinstaller
打包助手
www.jianshu.com/p/1ca206b28e28http://c.biancheng.net/view/2690.html环境:Python3.9.0pip20.2.3cefpython366.1
pyinstaller
4.2PY
陀螺蚁
·
2024-02-02 06:46
Python3
python
python使用cryptography.fernet加密文件和读写
使用场景使用
pyinstaller
打包程序,需要打包一些文件。这些文件用户不可以查看内容,只有程序可以对文件进行读写操作。即文件在本地是加密的,用户无法读取内容,程序内置了密钥可以对文件正常读写。
Toblerone_Wind
·
2024-02-02 00:09
python
开发语言
cryptography
fernet
加密
【Python基础002】
Pyinstaller
打包python程序,轻松搞定程序内有图片导致exe无法运行问题
这里写目录标题一、简介1、安装命令注意:二、基本使用1、使用示例2、常用的命令选项三、使用spec文件打包1、生成spec文件四、常见问题五、总结一、简介
Pyinstaller
用于window、macOS
江湖小张
·
2024-02-01 03:34
Python基础
python
linux
开发语言
使用 pyinstall 打包 paddleocr
目录零、运行环境介绍一、安装
pyinstaller
二、编辑spec文件三、编辑入口python文件七、打包后将模型文件、图片移动至文件夹内六、打包后的文件内容截图四、借鉴的文章(对其内容进行修正)PaddleOCR
胡斌附体
·
2024-01-31 17:02
python
ai
gitee
运维
windows
ocr
paddle
在pycharm中如何使用
pyinstaller
目录一.简单使用二:如何打包工程中的使用到的其他文件(如,excel,cfg等)三.通过
pyinstaller
打包后的resources,如何找到呢一.简单使用1.在虚拟环境中,添加
pyinstaller
lib2
Aiden_SHU
·
2024-01-31 07:35
python
【Python源码保护】04 -
pyinstaller
PyInstaller
将Python应用程序及其所有依赖项捆绑到一个包中。用户可以在不安装Python解释器或任何模块的情况下运行打包的应用程序。
WonderThink
·
2024-01-30 16:44
python
python
开发语言
ERROR: No matching distribution found for setuptools>=40.8.0 解决方法
python包,不联网环境下报错ERROR:Nomatchingdistributionfoundforsetuptools>=40.8.0,尝试更新setuptools包,继续报错,网上找解决方法,安装
pyinstaller
wang2008start
·
2024-01-30 09:36
python
开发语言
打包django项目 报错:ModuleNotFoundError: No module named ‘django‘
我用
pyinstaller
打包django项目,打包成功后,运行项目:.
奔跑的梅花Lu
·
2024-01-30 07:47
各种错误和问题解决
django
python
后端
Python打包exe可执行程序及常见问题
1.打包exe文件1)安装
pyinstaller
打包成exe文件需要使用
pyinstaller
模块,可通过pip安装pipinstall
pyinstaller
2)打包常用参数(重点为加粗的参数):-F制作独立的可执行程序
Zandon Cao
·
2024-01-29 22:25
Python
python
开发语言
PyInstaller
将 Python 程序生成可直接运行的程序
图标转换地址:https://convert.app/#google_vignette官方文档:https://readthedocs.org/projects/
pyinstaller
/downloads
程序无涯海
·
2024-01-28 12:24
Python篇
python
开发语言
python使用
pyinstaller
快速打包成一个exe程序方案
使用
PyInstaller
是一种将Python脚本打包成独立可执行文件(.exe)的方便方法。
搬砖的诗人Z
·
2024-01-28 10:40
python
python
开发语言
pyinstaller
打包出错:No such file:.........
每个人出错显示不同,根据它给出的文件提示,来判断,哪个库没有导入exe,然后
pyinstaller
打包的时候在后面添加adddata,我缺少basemap-data,所以是下面的可以尝试以下几个步骤:确认您使用的是最新版本的
Xp-Thinker
·
2024-01-27 16:59
python
开发语言
pyinstaller
打包不能读取txt或者资源文件
当我们在exe执行的时候会报这样一个错,就是文件找不到,关于这个问题我查阅很多资料,没有准确的答案第一个步骤我首先获取到绝对路径我在打包的时候,同样还是会报找不到文件的错这里面就是我的txt文件后来发现在打包的时候生成spec文件,datas没有(txt)文件绝对路径,所以我们要加上当这些已经配置完成后,继续打包执行发现已经成功啦~ps:每次打包的时候尽量把build文件和dict文件都删除,以免
一只菜鸟HA
·
2024-01-27 16:58
python
解决
pyinstaller
打包时,包含的数据找不到
原因当使用
PyInstaller
打包到单个文件时,运行.exe会将所有内容解压缩到TEMP目录中的文件夹,运行脚本,脚本执行完毕后,则会丢弃临时文件。
PYGC
·
2024-01-27 16:28
python
windows
pyinstaller
打包Python项目后运行出错:FileNotFoundError
前言最近在将Python项目打包过程中遇到问题,FileNotFoundError:Nofileordirectory:‘C:\Users\johnny\Appdata\Local\Temp\_MEI70722\librosa\util\example_data\registry.txt’.特此分享一下解决该问题的方案1、创建一个文件夹“extra-hooks”,并在其中创建一个文件“hook-l
Endless_jc
·
2024-01-27 16:27
python
单独生成 main.exe,
pyinstaller
× pyecharts 打包报错找不到文件 map_filename.json 一次搞定!
报错:FileNotFoundError:[Errno2]Nosuchfileordirectory:‘C:\Users\xxx\AppData\Local\Temp_MEI3455\pyecharts\datasets\map_filename.json’运行main.exe时找不到map_filename.json文件。先在我们的电脑上找到这个文件,一般在本机Python安装目录下:C:\Us
蜉蝣1号
·
2024-01-27 16:25
python
echarts
html
pyqt
python
pyinstaller
打包常见问题(一):无法生成exe文件/打包闪退
本地环境能正常运行程序调用了wav文件,即音效资源文件程序调用wav路径正确,也是采用绝对路径问题描述:程序制作完成后,进行了以下三步打包操作:1、生成spec文件在需要打包的程序的目录上,我进入终端输入以下命令进行打包:
pyinstaller
-F-wsnake.py2
虫虫仙人
·
2024-01-27 16:54
android
python
pygame
windows
python
pyinstaller
打包常见问题(二):No file找不到文件解决办法
环境也能正常运行程序调用了wav文件,一个音效资源文件,程序调用的路径如下:file="猫咪吃东西.wav"问题描述:程序制作完成后,我开始打包在需要打包的程序的目录上,我进入终端输入以下命令进行打包:
pyinstaller
-cFxxx.py
虫虫仙人
·
2024-01-27 16:22
android
python
windows
超简单远程断网wifi自动重连
netshwlanconnectssid="xxx"name="xxx"')xxx为你所要连的wifi名称二、打包为exe文件(不必要)不然每次运行都会弹出cmd创建一个新的虚拟环境testpy310pipinstall
pyinstaller
py
不琂而玉
·
2024-01-27 07:57
一些小操作
python
Mac Python 开发语言 MAC下
pyinstaller
安装和环境变量设置
一、安装
pyinstaller
pip3install
pyinstaller
#安装pip3show
pyinstaller
#查看路径这里找个地方记录安装路径,其实主要是记录python版本号:Location
Nick5683
·
2024-01-27 06:39
macos
开发语言
python
anaconda3利用
pyinstaller
打包.py为.exe文件The ‘pathlib‘ package...问题
问题:anaconda3利用
pyinstaller
打包.py为.exe文件报如下错误:(base)D:\>
pyinstaller
-c-F.
cwr888
·
2024-01-26 05:48
python
python
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他