这时如果连接不到proxy.golang.org 的话可以切换国内源
执行:go env -w GOPROXY=https://goproxy.cn
这时就可以轻松下载了
这时如果连接不到proxy.golang.org 的话可以切换国内源
执行:go env -w GOPROXY=https://goproxy.cn
这时就可以轻松下载了
Wails是一个可让您使用 Go 和 Web 技术编写桌面应用的项目。
将Wails看作为 Go 的快并且轻量的 Electron 替代品。 您可以使用 Go 的灵活性和强大功能,结合丰富的现代前端,轻松的构建应用程序。
【实例】frp内网穿透 公开自己电脑中本地服务器中的某个网站
由于在外地,笔记本使用手机热点连网的。有客户要帮看代码,但是代码的测试还需要回传数据,那么在本地测试就不可行了,而且我又不想把测试代码放到我的服务器中,所以就想到了frp。
刚开始弄frp有些蒙,研究研究就好了。frp内网穿透
刚开始时,域名解析使用了泛域名方法,这样也是我刚开始发蒙的原因,后来改为直接解析的方法,就好了。
CentOS 手动安装Go语言(golang)
0 |
wget https://dl.google.com/go/go1.13.8.linux-amd64.tar.gz |
将源码包解压后直接放到 /usr/local 目录下, 不用再次 make && make install 来安装了, 开箱即用
0 |
tar -C /usr/local/ -zxvf go1.13.8.linux-amd64.tar.gz |
需要添加GO的环境变量到系统$PATH中,步骤如下:
0 |
vim /etc/profile.d/go.sh |
在打开的文件里加入
0 |
export PATH=$PATH:/usr/local/go/bin |
然后保存退出即可(命令 :wq!)
0 |
source /etc/profile.d/go.sh |
CentOS 更新git,linux更新git
0 |
yum remove git |
0 |
yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel asciidoc |
0 |
yum install gcc perl-ExtUtils-MakeMaker |
CentOS 7 yum更换国内源后报错:
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
Determining fastest mirrors One of the configured repositories failed (Unknown), and yum doesn't have enough cached data to continue. At this point the only safe thing yum can do is fail. There are a few ways to work "fix" this: 1. Contact the upstream for the repository and get them to fix the problem. 2. Reconfigure the baseurl/etc. for the repository, to point to a working upstream. This is most often useful if you are using a newer distribution release than is supported by the repository (and the packages for the previous distribution release still work). 3. Run the command with the repository temporarily disabled yum --disablerepo=<repoid> ... 4. Disable the repository permanently, so yum won't use it by default. Yum will then just ignore the repository until you permanently enable it again or use --enablerepo for temporary usage: yum-config-manager --disable <repoid> or subscription-manager repos --disable=<repoid> 5. Configure the failing repository to be skipped, if it is unavailable. Note that yum will try to contact the repo. when it runs most commands, so will have to try and fail each time (and thus. yum will be be much slower). If it is a very temporary problem though, this is often a nice compromise: yum-config-manager --save --setopt=<repoid>.skip_if_unavailable=true Cannot retrieve metalink for repository: epel/x86_64. Please verify its path and try again |
解决办法(3条命令):
0 1 2 |
yum remove epel-release yum update yum install epel-release |
windows版宝塔,提示:开启失败,请先卸载当前系统存在的PHP环境。
这是因为在windows系统环境变量中存在PHP。
解决办法:
打开windows系统环境变量,查找带有php安装目录的变量,删除即可。
QT更新组件时,提示:操作至少需要一个处于启用状态的有效资料档案库
这是因为没有设置连接所需的资源位置,也就是没有镜像资源的意思。
所有镜像资源站点列表:http://download.qt.io/static/mirrorlist/
解决办法:
点击 设置 >> 存储库 >> 临时存储库 >> 添加,
输入链接“http://mirrors.ustc.edu.cn/qtproject/online/qtsdkrepository/windows_x86/root/qt/”
如果连接失败,则到列表页面去找其它资源站即可。
redis最新版本,windows系统最新版本redis,redis v6.2.5
redis编译起来确实费劲,不定时的各种报错。
每次redis新版本编译成功,总会有一种成就感,但是这种成就感也是要建立来头发越来越少的基础之上的!哈哈。 Continue reading