上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 67 下一页
摘要: TIME_ZONE = 'Asia/Shanghai' USE_TZ = False 在setting.py文件 阅读全文
posted @ 2020-06-05 08:59 市丸银 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 1、安装captcha pip install captcha 阅读全文
posted @ 2020-06-03 15:50 市丸银 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 1、安装工具(anaconda) 2、安装tensorflow pip install -i https://pypi.douban.com/simple tensorflow 3、安装 Visual C++ Redistributable for Visual Studio 2015 https: 阅读全文
posted @ 2020-06-03 10:58 市丸银 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 一、下载 # encoding:utf-8 from bs4 import BeautifulSoup import requests, re, os, socket from urllib import request #指定要下载的版本 element_ui_version = "2.13.0" 阅读全文
posted @ 2020-05-28 11:22 市丸银 阅读(393) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/wanyefu/article/details/81026936 阅读全文
posted @ 2020-05-13 13:48 市丸银 阅读(95) 评论(0) 推荐(0) 编辑
摘要: git stash git pull git stash pop 发生冲突 阅读全文
posted @ 2020-05-13 10:30 市丸银 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 递归 def df_merge(self, df_lst): df_len = len(df_lst) if df_len == 1: return df_lst[0] elif df_len == 2: return df_lst[0].merge(df_lst[1], on=["company" 阅读全文
posted @ 2020-05-11 13:40 市丸银 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 目的:当表中unique索引或者primary key(主键)出现重复时,执行update操作,当不出现重复时,执行insert操作 例子: INSERT INTO tp_circle_recommend (userid, circleids, nohad, bothhad, had) VALUES 阅读全文
posted @ 2020-05-08 14:45 市丸银 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 简单实用 https://www.cnblogs.com/liulangmao/p/9296269.html 注意np.corrcoef(df) 得到的也是矩阵 阅读全文
posted @ 2020-05-08 10:14 市丸银 阅读(698) 评论(0) 推荐(0) 编辑
摘要: 最简单的安装方法 conda conda install scikit-learn 其它,参考 https://www.cnblogs.com/magle/p/5638409.html 阅读全文
posted @ 2020-05-08 09:54 市丸银 阅读(20048) 评论(0) 推荐(1) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 67 下一页