I have a Python script which takes command line arguments.
When I want to run the script I have to navigate to its directory and run:
python myscript.py [arguments]
How can I run it like:
myscript [arguments]
Do I have to create a package? If so, how?