摘要: 1. 找到安装目录的pg_hba.conf 比如我的:C:\Program Files\PostgreSQL\13\data,你的可能是别的目录 2. 修改scram-sha-256为trust # IPv4 local connections: host all all 127.0.0.1/32 阅读全文
posted @ 2021-08-25 16:43 代码诠释的世界 阅读(454) 评论(0) 推荐(0)
摘要: 环境 win10 python3.8.2 wxpython==4.1.1 错误原因:可能是wxPython 的额外类缺失解决办法:额外运行下 pip install -U wxPython==4.0.7.post2 阅读全文
posted @ 2021-08-25 16:03 代码诠释的世界 阅读(586) 评论(0) 推荐(0)
摘要: 主要参考:https://blog.csdn.net/ancientear/article/details/81214533 1. 和文章不同的是, 我改的是.profile, 作者是创建了touch .bash_profile 可以 ls -al 自行查看home目录,然后修改或者创建即可 2. 阅读全文
posted @ 2021-07-23 10:49 代码诠释的世界 阅读(67) 评论(0) 推荐(0)
摘要: 因为我编译的时候报错, 所以就换了Java版本 主要参考:https://blog.csdn.net/hcgeng/article/details/103926480 阅读全文
posted @ 2021-07-23 10:43 代码诠释的世界 阅读(2827) 评论(0) 推荐(0)
摘要: 使用brew install gradle,详细的参考这篇文章,我比较懒 参考文章:https://www.cnblogs.com/vitoboy/p/12487648.html 阅读全文
posted @ 2021-07-23 10:35 代码诠释的世界 阅读(88) 评论(0) 推荐(0)
摘要: 我的主要是版本问题导致,每个人可能不一样,只做记录 阅读全文
posted @ 2021-07-23 10:32 代码诠释的世界 阅读(169) 评论(0) 推荐(0)
摘要: 本文主要参考:https://blog.csdn.net/qq_37237245/article/details/80229143需要的自行去看吧, 因为人家写的很详细,我就不写了,只做记录 阅读全文
posted @ 2021-07-23 10:25 代码诠释的世界 阅读(199) 评论(0) 推荐(0)
摘要: 1. 环境概况 android studio 4.2.2 mac 10.14.4 2. 主要是用Android studio自带的AVD(安卓虚拟设备),先看效果 3. 创建步骤 1. 打开安卓AVD Manager 菜单栏>tools>AVD Manager或者 2. 点击“Create Virt 阅读全文
posted @ 2021-07-23 10:16 代码诠释的世界 阅读(1619) 评论(0) 推荐(0)
摘要: 命令行前加上bash $ bash ./gradlew compileDebugJavaWithJavac --stacktrace Welcome to Gradle 6.7.1! Here are the highlights of this release: - File system wat 阅读全文
posted @ 2021-07-22 12:13 代码诠释的世界 阅读(1216) 评论(0) 推荐(0)
摘要: 1. 先上简单代码 function echo_log(){ color=$1 msg=$2 current=`date "+%Y-%m-%d %H:%M:%S"` if [[ $color == "error" ]]; then echo -e "\033[31m [$current]|${BAS 阅读全文
posted @ 2021-07-13 16:11 代码诠释的世界 阅读(219) 评论(0) 推荐(0)