Aug. 12–16, 6-9 p.m.
Aug. 19–23, 6-9 p.m.
Download from here: https://www.iterm2.com/.
Use this instead of your default terminal.
-
cd (change directory) How it works:
cd <directory-name>Example:
cd ~(change directory home)Example:
cd ..(change directory parent) -
ls (list)
How it works:
lsExample:
ls -a(list hidden files and directories, prefixed with .) -
touch
How it works:
touch <filename>Example:
touch helloworld -
cp (copy)
How it works:
cp <filename> <new-filename>Example:
cp helloworld helloworld2 -
rm (remove)
How it works:
rm <filename>Example:
rm helloworld2 -
mkdir (make directory)
How it works:
mkdir <directory-name>Example:
mkdir my-directory -
mv
How it works:
mv <filename> <directory-name>Example:
mv helloworld my-directory
Run xcode-select --install
Run /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Run brew install git
Check that it's installed using git --version
Then make an account on github.com if you don't already have one.
You want to set up an ssh key so you don't have to type in your username and password when you use it.
https://help.github.com/en/articles/connecting-to-github-with-ssh
First check if you have Zsh installed.
zsh --version
If you don't run
brew install zsh zsh-completions
Then make zsh your default shell
chsh -s /bin/zsh
Install Oh My Zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
Sublime is a text editor, where you can write your code. Download it from here: https://www.sublimetext.com/3.
Run ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/sublime to launch Sublime from the command line
Try sublime helloworld. It should open up sublime with your empty file. You can also open an entire directory using this command.
-
git init
-
git add -A
-
git commit -m "your message"
-
git push
-
git clone
Python Wrangler might help you if you have previous versions of Python installed and clean them up.
Please use this Python installation guide
Download this notebook
Create a directory called python-part1
cd into the directory
Run pipenv shell
pipenv install jupyter
jupyter notebook
Download this notebook
Download this notebook
Clone this repo
Clone this repo
How to set up your mac like an interactive news developer
More Python and general data/graphics tutorials in this repo