摘要:
RT... 阅读全文
摘要:
由于前面遇到的坑决定在Ubuntu20.4安装mysql与本地一致的mysql版本步骤如下~~ 1.下载安装包 wget https://downloads.mysql.com/archives/get/p/23/file/mysql-server_8.0.27-1ubuntu20.04_amd64 阅读全文
摘要:
sudo apt-get updatesudo apt-get upgradesudo apt-get install --reinstall ubuntu-kylin-software-center sudo apt-get install python-apt 阅读全文
摘要:
pip install -r requirements.txt 阅读全文
摘要:
pip install i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn torch==1.7.0 阅读全文
摘要:
pip install torch==1.7.0 -f https://download.pytorch.org/whl/torch_stable.html 阅读全文
摘要:
Caused by: com.mysql.cj.exceptions.CJException: Unknown database 'test' 首先检查这个数据库是否存在,jdbcurl填写是否正确,mysql是否启动。 电脑有些人是安装了安装版的mysql和绿色版的mysql,两个端口是否冲突。 阅读全文
摘要:
zz 先说说这个错误,其实就是我们的MySQL不允许远程登录,所以远程登录失败了,解决方法如下: 在装有MySQL的机器上登录MySQL mysql -u root -p密码 执行use mysql; 执行update user set host = '%' where user = 'root'; 阅读全文
摘要:
今天安装网上说明配置Phpmyadmin 老是403 。。。卸载重复安装几遍都是这样。。 后来发现403 面业有个nginx 思考是不是nginx 与phpmyadmin 的 apache2 打架了。。 ~# sudo systemctl stop nginx ~# sudo systemctl r 阅读全文
摘要:
1.先卸载当前版本npm uninstall sass-loader 2.再安装 npm install sass-loader@7.3.1 --save-dev OK 应该是Node与最新版sass-loader不兼容的问题,指定版本号后就可以安装成功了。。 阅读全文
摘要:
报: "Unable to resolve service for type xxxx IService while attempting to activate XXX Controller" Startup中ConfigureServices添加: services.AddTransient<I 阅读全文