代码改变世界

随笔档案-2021年4月22日

windows系统安装mysql及导库

2021-04-22 17:41 by Tanwheey, 76 阅读, 收藏,
摘要: 1、安装: 1)下载安装包 mysql官网地址:https://dev.mysql.com/downloads/installer/ 注意:安装MySQL数据库的过程中牢记用户名和密码,建议使用容易记的用户名和密码; 安装路径最好选择非系统盘,牢记路径,方便接下来访问数据库,另外MySQL数据库完全 阅读全文

linux报错 OSError: [Errno 24] Too many open files

2021-04-22 16:15 by Tanwheey, 2162 阅读, 收藏,
摘要: 原因:linux系统限制 1 2 ulimit -n # 输出 1024 解决:(临时提高系统限制,重启后失效) 1 ulimit -n 10240 阅读全文

python3报错ModuleNotFoundError: No module named 'Queue'

2021-04-22 15:39 by Tanwheey, 2212 阅读, 收藏,
摘要: Traceback (most recent call last): File "test.py", line 4, in <module> import QueueModuleNotFoundError: No module named 'Queue' Process finished with 阅读全文