上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 93 下一页
摘要: 参考:https://zhuanlan.zhihu.com/p/425678081 Python logging模块定了为应用程序和库实现灵活的事件日志记录的函数和类。 下面是一个示例,安装时间格式记录日志到文件 import logging def test_logging(): logging. 阅读全文
posted @ 2023-09-27 11:38 minseo 阅读(20) 评论(0) 推荐(0) 编辑
摘要: Windows11无法使用浏览器上网 检查IP,DNS均支持 原因:代理问题 修复方法:打开设置搜索代理,打开代理设置 阅读全文
posted @ 2023-09-25 09:13 minseo 阅读(138) 评论(0) 推荐(0) 编辑
摘要: ### 添加虚拟解释器 pycharm左上角File-Settings ![image](https://img2023.cnblogs.com/blog/1144139/202308/1144139-20230828162523823-1037231678.png) 增加解释器 ![image]( 阅读全文
posted @ 2023-08-28 16:28 minseo 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 使用Win键+Alt+R进行屏幕录制 Wwin键是ctrl键和alt键之间的按键。windows键就是电脑键盘上ctrl键和alt键之间的按键。它带着微软的徽标,跟开始菜单一样的图标,它属于辅助按键,主要与其它按键组合使用,实现一些特定的功能,组合成多种快捷操作方式。 ![image](https: 阅读全文
posted @ 2023-08-24 17:54 minseo 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 以下代码演示Python怎么从网络下载一个文件至本地并保存在当前文件夹download import os import requests from urllib.parse import urlparse def download_file(url): response = requests.ge 阅读全文
posted @ 2023-08-24 17:37 minseo 阅读(905) 评论(0) 推荐(0) 编辑
摘要: Windows安装MySQL后默认只能本机访问,怎么开启网络访问 mysql> create user 'root'@'%' identified by 'password'; Query OK, 0 rows affected (0.00 sec) mysql> grant all on *.* 阅读全文
posted @ 2023-08-19 14:07 minseo 阅读(45) 评论(0) 推荐(0) 编辑
摘要: Windows安装MySQL后默认不会设置环境变量需要手动添加 已Windows11为例 我的电脑-右键-属性-高级系统设置 ![image](https://img2023.cnblogs.com/blog/1144139/202308/1144139-20230819134939238-2056 阅读全文
posted @ 2023-08-19 13:51 minseo 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/qq_41664096/article/details/118961381 使用以下命令启动npm只能本机访问 ``` npm run dev ``` 如果需要网络访问则需要加参数--host ``` npm run dev --host 0.0.0 阅读全文
posted @ 2023-08-18 18:08 minseo 阅读(3609) 评论(0) 推荐(0) 编辑
摘要: 参考:https://zhuanlan.zhihu.com/p/348120084 下载Anaconda 下载地址 https://www.anaconda.com/ https://repo.anaconda.com/archive/Anaconda3-2023.07-2-Windows-x86_ 阅读全文
posted @ 2023-08-14 18:01 minseo 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.cnblogs.com/lizm166/p/16468953.html 原因:未设置源跟 解决方法:设置源跟 ![image](https://img2023.cnblogs.com/blog/1144139/202308/1144139-202308101616573 阅读全文
posted @ 2023-08-10 16:17 minseo 阅读(120) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 93 下一页