会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
市丸银
知行合一
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
47
48
49
50
51
52
53
54
55
···
98
下一页
2020年6月5日
Django 更改时区
摘要: TIME_ZONE = 'Asia/Shanghai' USE_TZ = False 在setting.py文件
阅读全文
posted @ 2020-06-05 08:59 市丸银
阅读(154)
评论(0)
推荐(0)
2020年6月3日
验证码识别
摘要: 1、安装captcha pip install captcha
阅读全文
posted @ 2020-06-03 15:50 市丸银
阅读(131)
评论(0)
推荐(0)
windows 安装 tensorflow
摘要: 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 市丸银
阅读(149)
评论(0)
推荐(0)
2020年5月28日
elemnetui 下载,及引用
摘要: 一、下载 # 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 市丸银
阅读(470)
评论(0)
推荐(0)
2020年5月13日
cenos7 安装mysql
摘要: https://blog.csdn.net/wanyefu/article/details/81026936
阅读全文
posted @ 2020-05-13 13:48 市丸银
阅读(120)
评论(0)
推荐(0)
git stash实用
摘要: git stash git pull git stash pop 发生冲突
阅读全文
posted @ 2020-05-13 10:30 市丸银
阅读(146)
评论(0)
推荐(0)
2020年5月11日
pandas merge 递归
摘要: 递归 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 市丸银
阅读(360)
评论(0)
推荐(0)
2020年5月8日
ON DUPLICATE KEY UPDATE mysql 添加或更新
摘要: 目的:当表中unique索引或者primary key(主键)出现重复时,执行update操作,当不出现重复时,执行insert操作 例子: INSERT INTO tp_circle_recommend (userid, circleids, nohad, bothhad, had) VALUES
阅读全文
posted @ 2020-05-08 14:45 市丸银
阅读(379)
评论(0)
推荐(0)
numpy corrcoef()
摘要: 简单实用 https://www.cnblogs.com/liulangmao/p/9296269.html 注意np.corrcoef(df) 得到的也是矩阵
阅读全文
posted @ 2020-05-08 10:14 市丸银
阅读(742)
评论(0)
推荐(0)
conda 安装sklearn
摘要: 最简单的安装方法 conda conda install scikit-learn 其它,参考 https://www.cnblogs.com/magle/p/5638409.html
阅读全文
posted @ 2020-05-08 09:54 市丸银
阅读(20123)
评论(0)
推荐(1)
上一页
1
···
47
48
49
50
51
52
53
54
55
···
98
下一页
公告