Skip to content

Installation

Pascal Zarrad edited this page Oct 16, 2019 · 18 revisions

As psh was initially build as a simple install script for zsh, the focus lays on an easy installation process - while still being powerfull enough to generate huge and personalized .zshrc's. While the installation process is straight forward . only Linux distributions that ship with apt as package manager are currently compatible.

Quick install

The quick install is a great choice with you don't have many time for the installation. Just check if your system is compatible with psh and run the below command. If you have an fork of psh, replace the GitHub repository URL with the one of your repository!

Short explaination what the following command does:

  • It is not just one command, its seven commands chained together!
  • It will check for updates apt update and then install them apt upgrade.
  • It will install git.
  • It will clone this repository.
  • It will change into the directory that has been created while cloning this repository.
  • It will make the install.sh script executable
  • It will execute the install.sh script
  • The installer will guide you through the standard installation process

Copy this command and execute it to quickly install psh:

sudo apt update && sudo apt upgrade && sudo apt install git && git clone https://github.com/pascal-zarrad/psh.git && cd psh && chmod +x install.sh && ./install.sh

If you want further information about the installation, read the full guide.

Clone this wiki locally