1
0
mirror of https://github.com/RyanGreenup/cadmus.git synced 2025-03-13 14:39:39 +01:00

PATH Readme

This commit is contained in:
Ryan Greenup 2020-07-17 04:08:31 +10:00
parent 2528b1b10b
commit ba8a80192d

View File

@ -174,6 +174,32 @@ It is assumed that:
- [MarkText](https://github.com/marktext/marktext)
- [bat](https://github.com/sharkdp/bat)
### PATH
If installed with `pip` or `cargo` it will be necessary to add these directories to your `PATH`:
``` bash
## bash
echo '
export PATH="$HOME/.local/bin:$PATH"
export PATH="$HOME/.cargo/bin:$PATH"
' >> ~/.bashrc
## zsh
echo '
export PATH="$HOME/.local/bin:$PATH"
export PATH="$HOME/.cargo/bin:$PATH"
' >> ~/.bashrc
## fish
echo '
set PATH $HOME/.local/bin $PATH
set PATH $HOME/bin $PATH
set PATH "$HOME/.cargo/bin $PATH
' >> ~/.config/fish/config.fish
```
### Recommended for all Features
- [WeasyPrint](https://aur.archlinux.org/packages/python-weasyprint/)