I downloaded the Google App Engine as a zip format, unzipped it to /usr/local/google_engine
Now I need to run a python script from that folder all the time. How do I make it available no matter where my path is? ie: when i’m in /usr/something/ i can execute the script by just calling script.py?
Can I do this without aliasing or without using bash scripts?
Edit your .bashrc to add the desired directory on the PATH environmental variable.
then, either start new terminal or do,
Now try to run the script from anywhere.
Another way you can do it without even touching the .bashrc would be to create a symlink by doing something like,