I'm new to python programming. I want to create an alias to my script, so that i can use it in the terminal.
I've a .py file named r.py and i'm trying to create an alias for it. I created it by using the following commnad:
$ alias new="python /Python_scripts/radians.py"
Now when i type the word new in the terminal it's giving an error -'no such file exists'
Can anyone tell me how to do it?
=.