Python
mcatto
这个作者很懒,什么都没留下…
展开
-
python3 pyinstaller pyppeteer NameError(“name ‘__version__‘ is not defined“)
在使用pyppeteer+pyinstaller打包运行浏览器模拟程序时,出现NameError("name '__version__' is not defined") 错误问题。导致该问题的原因是由于pyinstaller打包时没将pyppeteer的meta信息打进去,导致运行时候报错。解决方式:增加 --copy-metadata参数import PyInstaller.__main__import osif __name__ == '__main__': pyi_a原创 2021-11-29 15:31:29 · 1452 阅读 · 0 评论 -
python3 multiprocessing windows环境下 pyinstaller打包exe运行无限创建进程问题
mulitprocessing模块在window环境下使用有诸多限制,需要注意,其中之一就是在main.py下使用multiprocessing启动子进程问题:该问题在pycharm中没有,pycharm环境下运行调试都是正常的,当使用pyinstaller打包为exe文件时,双击exe文件运行,会进入无限创建进程的死循环,最终导致系统崩溃,所有cpu跑满。导致该问题的根本原因是:windows环境下python通过启动进程创建子进程时,子进程启动会导入父进程的py文件,运行父进程的创建子进程代码导原创 2021-11-29 15:24:54 · 6104 阅读 · 2 评论 -
PyInstaller打包ModuleNotFoundError: No module named ‘xxxx‘
在venv环境下,通过命令行pyinstaller执行打包命令,打包过程没有异常,但是打包成功后,执行dist/xxx.exe文件时,出现如下类似错误:Traceback (most recent call last): File "main.py", line 4, in <module> import jcw File "PyInstaller\loader\pyimod03_importers.py", line 531, in exec_module File原创 2021-06-10 16:13:06 · 2204 阅读 · 3 评论 -
(windows)pip install pycrypto:error: Microsoft Visual C++ 14.0 is required. Get it with “Build Tools
使用pyinstaller打包exe程序时,报错PyInstaller win32ctypes.pywin32.pywintypes.error: (2, 'LoadLibraryExW'...原创 2021-06-24 15:38:07 · 288 阅读 · 0 评论 -
python3 (pip3 install threading: ERROR: Cloud not find a version that satisfies the requirement ..)
通过pip3 install threadings出现如下错误:ERROR: Cloud not find a version that satisfies the requirement threadingERROR: No matching distribution found for threading解决方法:pip3 install thread6原创 2021-04-28 18:08:01 · 3288 阅读 · 3 评论 -
阿里云OSS本地批量上传脚本工具
使用需要提前安装 pip install oss2 模块上传到目录时,存储到oss上key取目录内文件或者目录列表的相对路径: 如:D:/demo/ 文件夹,文件夹内有,dir1/f1, dir2/f2, f3这几个文件,则存储到oss上key取dir1/f1,dir2/f2,f3# -*- coding: utf-8 -*-# Author: tom # Description: ali oss tool for upload local file or dir# Date: 2...原创 2020-08-24 17:59:15 · 1428 阅读 · 0 评论 -
python ImportError: No module named redis
默认redis模块没有安装,安装方式很多种,下面只介绍一种最简单的:[root@tom]# yum list | grep python | grep redispython-redis.noarch 2.0.0-1.el6 @epel [root@tom]# yum install python-red...原创 2019-08-05 20:38:55 · 774 阅读 · 0 评论