Knowing the CLI will make you 107% sexier
CLI == Command Line == Terminal == Shell
To the command line!
In a new directory:
python : command not found ?
Code to customize your terminal lives in the file .bash_profile in your home folder. If it does not exist you can create it. This is a plain text file that you can add to using any text editor.
Any commands that you can run interactively at the terminal command prompt can be put in here, to be executed each time the terminal is opened.
Directories, not specific files should be added to the path. When a command is entered on the command line, bash will search all of the directories on the path for that command (program).
To add to your path use:
PATH="$PATH:/path/to/new/folder"
E.g. for python 3.5, using Git-Bash on windows add:
PATH="$PATH:/c/Python35:/c/Python35/Scripts"
Space | Forward |
---|---|
Right, Down, Page Down | Next slide |
Left, Up, Page Up | Previous slide |
P | Open presenter console |
H | Toggle this help |