diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2022-03-12 00:17:20 -0700 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2022-03-12 00:17:20 -0700 |
commit | 670f0878b650941b75c5e84efdaaddf636aad757 (patch) | |
tree | b4df1c2d6793d0c62eb077e7f616f4dca398fb5e | |
parent | 0a2bfef2c23333bb525cb68dcc445ae98d92c29e (diff) | |
download | lset-670f0878b650941b75c5e84efdaaddf636aad757.tar lset-670f0878b650941b75c5e84efdaaddf636aad757.tar.gz lset-670f0878b650941b75c5e84efdaaddf636aad757.tar.bz2 |
fix code blocks
-rw-r--r-- | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -24,22 +24,22 @@ python3 pip3 ``` -You can install these with the following commands in these distros. You will most likely need to run `sudo` before any of these commands. +You can install these with the following commands in these distros: ### Ubuntu/Debian ```bash -# apt install git npm nodejs python3 python3-pip +$ sudo apt install git npm nodejs python3 python3-pip ``` ### Fedora/CentOS/Other RHEL ```bash -# yum install git npm nodejs python3 python3-pip +$ sudo yum install git npm nodejs python3 python3-pip ``` ### Arch/Manjaro ```bash -# pacman -S git npm nodejs python3 python-pip +$ sudo pacman -S git npm nodejs python3 python-pip ``` ### openSUSE ```bash -# zypper install git npm16 nodejs16 python3 python3-pip +$ sudo zypper install git npm16 nodejs16 python3 python3-pip ``` ### Other Distros/BSD If you fit this description, you probably know what you're doing. |