摘要:
1. 查看系统状态 2. 启动dockers 阅读全文
摘要:
步骤: 1. 打开已有数据库表视图模型 2. 点击切换到e-r视图 3. 选中需要绘制e-r图的表格,右键选择逆向表到模型 4. 绘制连线 5. 导出 阅读全文
摘要:
flask实现文件的上传 #flask实现文件上传 @app.route("/filetranslate", methods=['POST']) def filetranslate(): files = request.files["files"] print(files, 12901) print 阅读全文
摘要:
@app.route("/filetranslate", methods=['POST']) def filetranslate(): files = request.files["files"] print(files, 12901) print(files.filename) file = "s 阅读全文
摘要:
出现如下报错: 我自己遇到这个问题的解决方法是使用了如下命令解决的: pip install -U setuptools 更新了一下setuptools就ok了。这是再装python-docx的时候出现的问题. 来自于https://github.com/python-openxml/python- 阅读全文
摘要:
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py python get-pip.py --force-reinstall 验证是否装成功: pip show pip 阅读全文
摘要:
这里用的是其他人的博客,卸载这里只是为了以后寻找方便。参考地址如下所示: https://www.jb51.net/article/199496.htm#_label1 阅读全文
摘要:
出现错误: 或者 这种错误,有可能是stanza版本的问题(之前装了stanza==1.1.1和stanza==1.3.0版本),正常使用的时候,出现了上述的错误。 后面安装了 pip install stanza=1.2.3,上面说的两种错误都好了。 阅读全文