diff options
| author | dacctal <dacctal@symlinx.net> | 2026-05-31 10:32:21 +0000 |
|---|---|---|
| committer | dacctal <dacctal@symlinx.net> | 2026-05-31 10:32:21 +0000 |
| commit | 2ac621bdb341809baf1966be8652b3bea9cd6368 (patch) | |
| tree | 667809986eb29e01c9dc169b4f1d9e495850ddf8 /README.md | |
| parent | 7238b079d9b1f40bd2879780444db638e50d1ed8 (diff) | |
added pre-install instructions for shells in README.md
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -48,6 +48,18 @@ make install PREFIX="/path/to/install" # Usage ## Installing Packages +### Pre-installation +Before you use any programs that you installed with pkgit, you need to specify the path of the binaries in your shell's configuration. +```sh +export PATH="$HOME/.local/bin:$PATH" +``` +```fish +fish_add_path $HOME/.local/bin +``` +```csh +setenv PATH $HOME/.local/bin:$PATH +``` + ### Basic install Assuming you have already added its respective repo, you can install a package by specifying its name: ``` |
