update install.sh and fix some typos #68
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
多打了个斜杠导致没识别出来文件夹 一键安装脚本大佬能更新一下么 #67
把这些安装的东西都放在一个文件夹
liverecord
里,不然太乱了go 1.17 以后的版本中
go get
安装二进制的功能被废除,只能使用go install
尽量不写
cd ..
,用cur_dir="$(pwd)"
cd ${cur_dir}
来定位路径,避免错误后被cd ..
带到奇怪的路径导致问题用更加现代化的
curl
替换wget
整理了一下安装脚本,把一些依赖放在一起安装,并且清理未使用的依赖
使用 root 用户安装 pip 依赖的时候会有问题,加上
--user
参数