python
Good_Day_Day
865700600@qq.com
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
pyinstaller 使用心得
pyinstaller 使用心得 1.安装下载 pip install pyinstaller 2.运行命令 1.pyinstaller -F xxx.py -p path -F是.exe文件输出 -p path是其他文件路径,所调用的包要么放在同文件夹下,要么放在这个path里。 一般如果用anaconda的话,这个可以用anaconda/lib/,强推!! 3...原创 2018-07-08 23:45:46 · 355 阅读 · 0 评论 -
database 搭建使用心得
database 搭建使用心得 1.建立环境 pymysql 安装:pip install pymysql python跟mysql连接的工具 dataset 安装:pip install dataset 操作连接后的的工具 2.数据库开启命令: mysql -P port -h xxx.xxx.x.x -u dev -p 3.dataset使用心得: 1.数据库缺少‘MYSQL...原创 2018-07-10 15:44:38 · 400 阅读 · 0 评论 -
Multithread 使用心得
Multithread 使用心得 1.建立环境 threading 安装:anaconda自带 2.使用格式 import threading class Set_Globa(threading.Thread): def __init__(self): super(Set_Globa, self).__init__() def run(self): ...原创 2018-07-10 15:52:54 · 1063 阅读 · 0 评论
分享