不为别的,只为做一个连自己都羡慕的人

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 28 下一页
摘要: 1. 查看系统状态 2. 启动dockers 阅读全文
posted @ 2021-10-19 10:46 升级打怪 阅读(717) 评论(0) 推荐(0) 编辑
摘要: 步骤: 1. 打开已有数据库表视图模型 2. 点击切换到e-r视图 3. 选中需要绘制e-r图的表格,右键选择逆向表到模型 4. 绘制连线 5. 导出 阅读全文
posted @ 2021-10-18 09:41 升级打怪 阅读(2039) 评论(0) 推荐(0) 编辑
摘要: flask实现文件的上传 #flask实现文件上传 @app.route("/filetranslate", methods=['POST']) def filetranslate(): files = request.files["files"] print(files, 12901) print 阅读全文
posted @ 2021-10-15 16:23 升级打怪 阅读(285) 评论(0) 推荐(0) 编辑
摘要: @app.route("/filetranslate", methods=['POST']) def filetranslate(): files = request.files["files"] print(files, 12901) print(files.filename) file = "s 阅读全文
posted @ 2021-10-15 16:19 升级打怪 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 出现如下报错: 我自己遇到这个问题的解决方法是使用了如下命令解决的: pip install -U setuptools 更新了一下setuptools就ok了。这是再装python-docx的时候出现的问题. 来自于https://github.com/python-openxml/python- 阅读全文
posted @ 2021-10-14 16:54 升级打怪 阅读(520) 评论(0) 推荐(0) 编辑
摘要: curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py python get-pip.py --force-reinstall 验证是否装成功: pip show pip 阅读全文
posted @ 2021-10-14 16:50 升级打怪 阅读(1214) 评论(0) 推荐(1) 编辑
摘要: 这里用的是其他人的博客,卸载这里只是为了以后寻找方便。参考地址如下所示: https://www.jb51.net/article/199496.htm#_label1 阅读全文
posted @ 2021-10-12 14:13 升级打怪 阅读(793) 评论(0) 推荐(0) 编辑
摘要: 出现错误: 或者 这种错误,有可能是stanza版本的问题(之前装了stanza==1.1.1和stanza==1.3.0版本),正常使用的时候,出现了上述的错误。 后面安装了 pip install stanza=1.2.3,上面说的两种错误都好了。 阅读全文
posted @ 2021-10-12 12:06 升级打怪 阅读(350) 评论(0) 推荐(0) 编辑
摘要: 需引入"strconv"包 string到intint,err:=strconv.Atoi(string) string到int64int64, err := strconv.ParseInt(string, 10, 64) int到stringstring:=strconv.Itoa(int) i 阅读全文
posted @ 2021-10-11 17:32 升级打怪 阅读(370) 评论(0) 推荐(0) 编辑
摘要: 1. 在终端中输入: sudo ufw disable 2. 输入密码 3. 出现如下提示: 防火墙关闭成功。 阅读全文
posted @ 2021-10-11 17:09 升级打怪 阅读(971) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 28 下一页