...
3. If you are using a user-installed Python package in Terminal, you will need to add your user library to PATH. Type the following in Terminal to add In Terminal:
First, crease a .bashrc if you haven't done so before:
Code Block |
---|
touch ~/.bashrc |
Add your user library to PATH:
Code Block |
---|
echo 'export PATH=$PATH:~/.local/bin' >> ~/.bashrc |
...