Create pip package that create a script executable from everywhere

Viewed 29

I created a python script that i want to execute in my terminal, and i want it to be installable with pip

pip install utility
utility

i already tried to search on internet, but found nothing

1 Answers

The reason is your script not an installable package on pip. If you want to execute the script from anywhere from the terminal you could try by adding the script to Path.

Related