BPHYS workshop, Fall 2022, Eric Rouviere
notebooks/contains the jupyter notebooks we will be working through.src/contains the source code of much of the workshop.
-
Check type of CPU.
-
Download from https://julialang.org/downloads/
-
Install by clicking on the downloaded file and dragging to applications.
-
Add julia to your PATH by adding the following line to the
~/.bash_profilefile.export PATH="$PATH:/Applications/Julia-1.8.app/Contents/Resources/julia/bin/" -
In the command line enter
source ~/.bash_profile
- Start the julia app. This should open up the terminal with julia running.
- Type
]. This gets you to the package manager - Enter
add PyPlot, IJulia, LaTeXStrings, BenchmarkTools - Press the delete key to go back to julia.
- Enter
using PyPlot, IJulia, LaTeXStrings, BenchmarkTools. - Enter
jupyterlab()to start Jupyter IDE. When prompted to install conda, agree.
- Got to https://git-scm.com/
- click "Download for XXX" and follow installer instructions.
- In the terminal, move to a directory where you want to put the repo (e.g.
cd ~/Desktop). - Enter
git clone https://github.com/ericrouviere/BPHYS_workshop_2022.git
To keep your up repo up to date with changes I make, cd into BPHYS_workshop_2022/ and enter git pull