python相关
文章平均质量分 50
测试
舟摇月影渡星河
自己的笔记
展开
-
python pip安装超时解决办法
执行 pip install pyinstaller。下载时加入镜像源参数。原创 2024-07-10 11:39:11 · 645 阅读 · 0 评论 -
pip intall package网络超时,无法安装问题解决
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple +库。中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/阿里云 http://mirrors.aliyun.com/pypi/simple/原创 2023-07-14 14:04:41 · 457 阅读 · 1 评论 -
python连接mysql数据库
1、安装pymysql打开cmd 执行命令:pip install pymysql2、创建数据库test3、创建表sql:CREATE TABLE `test` ( `test` varchar(32) DEFAULT NULL, `test1` varchar(32) DEFAULT NULL) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;上代码import pymysqlconn = pymysql.connec...原创 2021-09-14 15:57:15 · 244 阅读 · 0 评论