github
张三爻
沉淀
展开
-
遇见的几个MYSQL问题
Unable to register remote MySQL server: Host is not allowed to connect to this MySQL serverOnly local users are registered in the database server:mysql> SELECT User, Host FROM mysql.user;+...原创 2020-04-08 15:09:15 · 206 阅读 · 1 评论 -
阿里云安装FLASK常见问题
操作环境为:Ubuntu更新和升级系统:sudo apt-get updatesudo apt-get -y upgrade安装PIP:sudo apt-get install -y python3-pip使用pip:pip3 install package_name安装python3.7.3:首先安装依赖项:sudo apt-get inst...原创 2020-04-08 15:01:29 · 224 阅读 · 0 评论 -
将本地文件夹上传到Github远程存储库
将本地文件夹push到Github存储库中:打开Git Bash,将当前目录修改为需要上传的文件夹初始化本地Git文件夹: git init执行: git add .首次提交: git commit -m "First commit"将Github存储库的完整网址复制:执行: git remote add origin 存储库地址这里若报错:...原创 2019-04-22 15:25:24 · 498 阅读 · 0 评论