Ubuntu下Picgo+Typora+Gitee/Github图床的实现

Ubuntu下Picgo+Typora+Gitee/Github图床的实现

准备:

  • Typora:官网下载
  • Pcigo:Github下载
  • nodejs环境
  • Gitee/Github账号

一、安装Typora

官网:https://typora.io/

# 官方给的安装方法
wget -qO - https://typora.io/linux/public-key.asc | sudo apt-key add -
sudo add-apt-repository 'deb https://typora.io/linux ./'
sudo apt-get update
sudo apt-get install typora

二、下载Picgo

Github仓库地址:https://github.com/Molunerfinn/PicGo

Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第1张图片

这里下载AppImage格式的

image-20211114001030401

如果没有执行权限给它加上执行权限

chmod a+x [名称]

双击运行

Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第2张图片

点是

Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第3张图片

点打开详细窗口

Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第4张图片

安装nodejs环境

Ubuntu的软件仓库就有直接安装nodejs、npm

sudo apt install nodejs npm -y

验证安装

node -v

npm -v

image-20211114003924423

Picgo里安装gitee插件

有了nodejs环境Picgo就可以安装插件了

在插件设置的搜索框里搜gitee,点gitee-uploader安装就可以了

Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第5张图片

然后就u可以看到图床设置里面出现了Gitee图床

Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第6张图片

创建图床

gitee是国内的

github是国外的

这里建议使用gitee,因为github可能会出现图片上传成功但是加载不了的现象

  • Gitee图床

    1. 新建仓库

      Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第7张图片

    2. 填写仓库信息

      Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第8张图片

    3. 创建readme文件

      Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第9张图片

    4. 创建开源许可证

      Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第10张图片

    5. 选择Apache2.0协议

      Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第11张图片

      Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第12张图片

    6. 添加私人令牌

      Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第13张图片

      Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第14张图片

      Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第15张图片

    7. 输入密码验证

      Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第16张图片

    8. 复制私人令牌(就是之后要用的token)确认关闭

      Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第17张图片

  • Github图床

    1. 点击网页右上角的+号来创建图床

      Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第18张图片

    2. 这里把仓库设置成public

      Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第19张图片

    3. 推荐创建README、LICENSE、.gitignore三个文件

      我们创建一个README就可以了直接点README

      Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第20张图片

    4. 下面创建私人令牌

      Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第21张图片

      找到Developer settings

      找到Personal access tokens

      Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第22张图片

      创建私人令牌

      输入密码确认身份

      Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第23张图片

      设置Note、Expiration、Select scopes

      Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第24张图片

    5. 复制保存私人令牌(以后用的tokens)

      Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第25张图片

Picgo设置

  • Gitee图床设置

Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第26张图片

参数:

  1. repo/设定仓库名:Gitee用户名/仓库名
  2. branch/设定分支名:分支名(Gitee默认master)
  3. token/设定Token:仓库的私人令牌
  4. path/制定存储路径:文件夹名/(这里可以不填写)
  5. customPath:年月
  6. customUrl/设定自定义域名:可以不填
  • Github图床设置

Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第27张图片

参数:

  1. repo/设定仓库名:Github用户名/仓库名
  2. branch/设定分支名:分支名(github默认main)
  3. token/设定Token:仓库的私人令牌
  4. path/制定存储路径:文件夹名/(这里可以不填写)
  5. customUrl/设定自定义域名:https://raw.githubusercontent.com/github用户名/仓库名/分支名

设置Typora

打开偏好设置进入图像设置

Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第28张图片

然后验证图片上传选项

Ubuntu下Picgo+Typora+Gitee/Github图床的实现_第29张图片

然后我们去仓库查看

image-20211114111104129

完成

你可能感兴趣的:(系统,github,ubuntu,git)