Setting up Python Command-Line Tools

This post is dedicated to my future self to save time – after installing a Python package with a cool command line tool, there is one final step before you can use it from the terminal. Your bash shell needs to know where to find it:

nano ~./bashrc
Add export PATH=$PATH:~/.local/bin to the bottom
source ~/.bashrc

There – 10 minutes looking up commands saved.

Laksiya (from the past)