震动大雁

文章
2
资源
0
加入时间
2年10月21天

sqlalchemy 踩过的坑

记录下Sqlalchemy遇到的问题,不定时更新。设置主键为非自增sqlalchemy 在sql server中默认主键是自增的,如果在数据库设置的主键不是自增的,这个时候插入就会出现异常:提示does not have the identity property这个时候需要在主键中设置autoincrement=False,显示表示非自增,才能正常写入不要使...

Jupyter Notebook 安装目录插件

Jupyter Notebook 安装目录插件1、用pip的时候注意控制超时,否则报错!pip install --default-timeout=1000 jupyter_contrib_nbextensions2、jupyter contrib nbextension install --user --skip-running-check3、前两个步骤都没报错后,启动 Jupyter ...