Jupyter NotebooksΒΆ
Class notes will be written in Jupyter Notebooks and Julia. Use the command
julia -e 'import Pkg; Pkg.add("IJulia")'
in your terminal to enable Julia in Jupyter. You may need to add other packages in the same fashion when attempting to run a cell with a using statement, such as
using Polynomials
So you would first run the command
julia -e 'import Pkg; Pkg.add("Polynomials")'
before you can run cells that use the Polynomials
package.