Configuring Rocky Linux 8 for Quantitative Analysis in Julia
May 24, 2022
Install Jupyter
Start with installing jupyter. It will serve as our server for development.
Install Dependencies
Install Jupyter Via Pip
Install Julia
We will be installing from the official binaries.
Make a directory in user profile. i simply ran mkdir julia in the home folder. The cd to julia.
When in the folder run
Wget
Unpack
Then unpack
Add to Path
In my case I added the following to my shell profile.
Downloading the QuantEcon Project
I will be working through the QuantEcon textbook provided at https://julia.quantecon.org/.
Clone the repository
Activate the Project.
Run a julia repl by typing julia into your terminal... if you added it to the path. Otherwise navigate to the bin and activate julia.
Install the Dependencies
Next run the following commands from the Julia REPL.
using Pkg
Pkg.activate
Pkg.instantiate