Python
主要是Python3日常问题记录,自动化脚本,小工具
Zakza
编程是一门艺术~
展开
-
Curl转Python代码 (无需依赖Postman)
浏览器请求复制为curl转Python requests代码,简单适配,亲测可用原创 2023-01-06 18:29:18 · 1771 阅读 · 0 评论 -
删除target文件夹--删除目录下面所有特定文件夹(python3)
python3代码del.pyimport os, sys, pathlib, shutilroot_path = r"D:\xx\Projects"del_dir_name="target"def recursion(path): for dir in os.listdir(path): tmp = os.path.join(path, dir) if os.path.isdir(tmp): if dir == del_原创 2022-01-12 17:17:13 · 763 阅读 · 0 评论 -
python环境安装1
pip install pip -Upip config set global.index-url https://pypi.douban.com/simplepip install torch torchvision records tqdm babel一般不会出问题conda update -n base -c defaults conda安装torchconda inst...原创 2019-07-01 11:43:46 · 116 阅读 · 0 评论 -
python新的环境下安装所有项目依赖+常见问题解决
一 pip install pipreqs在项目目录 shift+右键----》打开命令行或者powershell输入pipreqs ./可能报错1.gbk问题 pipreqs ./ --encoding=utf82.SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in posit...原创 2018-12-24 12:54:39 · 1162 阅读 · 0 评论 -
python 打包exe pyinstaller笔记
python3.5(个人用python3.7出问题)使用conda安装python环境,升级pippython -m pip install --upgrade pip使用我的另一个文章安装项目需要的所有依赖(用到pipreqs)安装pyinstallerpip install pyinstaller重点是安装时导包的问题在引入多个库的时候各种报错在花了大量时间摸索...原创 2018-12-24 13:36:19 · 261 阅读 · 2 评论