当前位置: 代码迷 >> 综合 >> How to install typora on Linux mint
  详细解决方案

How to install typora on Linux mint

热度:44   发布时间:2023-12-14 23:26:55.0

typora是一款不错的Markdown编辑器,最近看到很多人都在用,今天介绍一下,如何在Linux mint 20上安装这款软件。

  • Step 1 add apt-key
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BA300B7755AFCFAE

You can also run the following command to add apt key

wget -qO - https://typora.io/linux/public-key.asc | sudo tee /usr/share/keyrings/typora.asc > /dev/null
  • Step 2 add repository
echo "deb https://typora.io/linux ./" |sudo tee /etc/apt/sources.list.d/typora.list
  • Step 3 update index of apt
apt update
  • Step 4 install typora
apt install typora

Reference

  • typora document