Last active
March 22, 2020 12:10
-
-
Save mcgivrer/954b1340305cbe8f07bcdd3895da3d16 to your computer and use it in GitHub Desktop.
Typora ubuntu installation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# see https://gist.github.com/mcgivrer/954b1340305cbe8f07bcdd3895da3d16 | |
# or use | |
# sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BA300B7755AFCFAE | |
wget -qO - https://typora.io/linux/public-key.asc | sudo apt-key add - | |
# add Typora's repository | |
sudo add-apt-repository 'deb https://typora.io/linux ./' | |
sudo apt-get update | |
# install typora | |
sudo apt-get install typora |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment