上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 45 下一页
摘要: https://www.bootcss.com/ https://www.bootcdn.cn/ http://www.jeasyui.net/plugins/756.html 阅读全文
posted @ 2020-09-01 10:42 胸怀丶若谷 阅读(356) 评论(0) 推荐(0)
摘要: 输入以下命令: sudo apt-get -f install 参考链接:https://www.jianshu.com/p/767c9a29b403 阅读全文
posted @ 2020-08-28 10:40 胸怀丶若谷 阅读(1255) 评论(0) 推荐(0)
摘要: Install the GPG key: wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add - Ensure apt is set up to work with https source 阅读全文
posted @ 2020-08-27 11:14 胸怀丶若谷 阅读(1048) 评论(0) 推荐(0)
摘要: 方案一: 进入项目路径,在cmd窗口输入python 文件名。之后查看结果,看是否有模块未安装,或者是未导入模块。因为pyinstaller打包时,是按照被打包文件上的导入的库名进行打包的,所以需要将所有导入的模块声明放入这个文件中。 方案二: 参考链接:https://www.pianshen.c 阅读全文
posted @ 2020-08-27 08:53 胸怀丶若谷 阅读(1467) 评论(0) 推荐(0)
摘要: 首先,我们要安装alien这一软件: $sudo apt-get install alien ##alien默认没有安装,所以首先要安装它 $sudo alien xxxx.rpm ##将rpm转换为deb,完成后会生成一个xxxx.deb $sudo dpkg -i xxxx.deb ##这样xx 阅读全文
posted @ 2020-08-24 15:59 胸怀丶若谷 阅读(1844) 评论(0) 推荐(0)
摘要: django.core.exceptions.ImproperlyConfigured: Specifying a namespace in include() without providing an app_name is not supported. Set the app_name attr 阅读全文
posted @ 2020-08-24 11:16 胸怀丶若谷 阅读(1060) 评论(0) 推荐(0)
摘要: 解决方案: 定义外键的时候需要加上 on_delete=;即:contract = models.ForeignKey(Contract, on_delete=models.CASCADE) 阅读全文
posted @ 2020-08-24 10:27 胸怀丶若谷 阅读(394) 评论(0) 推荐(0)
摘要: 1.打开mysql命令行 show variables like '%char%'; 将字符集显示不是utf-8的更改为utf-8 例如:set character_set_database=utf8; 重启mysql,重新映射数据表即可 参考链接:https://blog.csdn.net/qq_ 阅读全文
posted @ 2020-08-23 15:54 胸怀丶若谷 阅读(1114) 评论(0) 推荐(0)
摘要: 一、 启动1、使用 service 启动:service mysql start2、使用 mysqld 脚本启动:/etc/inint.d/mysql start3、使用 safe_mysqld 启动:safe_mysql&二、停止1、使用 service 启动:service mysql stop 阅读全文
posted @ 2020-08-23 15:53 胸怀丶若谷 阅读(4188) 评论(0) 推荐(0)
摘要: 顺着报错文件点进去,找到query = query.decode(errors=‘replace’)将decode修改为encode即可. 阅读全文
posted @ 2020-08-21 09:43 胸怀丶若谷 阅读(235) 评论(0) 推荐(0)
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 45 下一页