Make utility available system wide

Python

  1. Find the location of your site-packages directory
     python -m site --user-site
    

    which will display a site, say <site-packages>

  2. Place the module in a directory in

    <site-packages>

1.Create a bash script in ~/.scripts e.g.

```bash
#!/bin/bash
python <site-packages><module>/main.py
```