【折腾】Linux(CentOS)安装 Python
条评论上接:
【折腾】Python + GitHub Actions 更新 Z-Blog 的探索_电脑网络_沉冰浮水
【折腾】VSCode 远程开发配置(Remote Development)_电脑网络_沉冰浮水
安装 Python
1 | python --version |
各种错误解决
设置 Python 编码
然后发现 py 文件中的中文注释会报错,解决方法是在首行添加如果下注释:
1
2# This Python file uses the following encoding: utf-8
import os,sysGitHub Actions 里的
git diff
问题git diff "HEAD~" -r --name-only HEAD
fatal: ambiguous argument ‘HEAD^’: unknown revision or path not in the working tree.
理论上用双引号或者不加引号就可以,,但是 GitHub Actions 里是报这个错。
git diff --name-only head~1
↑ 另外一种写法,等专门建个版本库再测试吧。。当前先用 File Changes Action
关于 VSCode 的
Remote - ssh
插件1
2
3
4"remote.SSH.remotePlatform": {
"DesiVPS": "linux",
"腾讯云": "linux"
}↑↑ 理论上首次连接时会询问然后保存,但是主机名设置中文时会失败,可以手动添加;
github_token: ${{ secrets.GITHUB_TOKEN }}
和github_token: ${{ secrets.BOT_TOKEN }}
在一些示例里用的是
${{ secrets.BOT_TOKEN }}
,而这个值需要自己添加使用,${{ secrets.GITHUB_TOKEN }}
则可以直接用。“error”: “500/getInputs Error”,
其他
然后还有个问题是安装不了 python-frontmatter,不知道为什么;好像安装上了???略奇怪,但是 Remote 中的 mdlint 表现和本地好像不太一样???
其他
linux(centos)安装 python - 知乎:https://zhuanlan.zhihu.com/p/137904053