Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1 KB

Notes.md

File metadata and controls

36 lines (27 loc) · 1 KB

Tag version notes

  1. git commit -m "Release v4.0.3: Changes"
  2. git tag v4.0.3
  3. git push origin master --tags

Cloning the repository

# Cd to where you would like to clone to
$ git clone https://github.com/StatisticalRethinkingJulia/SR2TuringPluto.jl
$ cd SR2TuringPluto.jl
$ julia

and in the Julia REPL:

julia> ]                                        # Actvate Pkg mode
(@v1.5) pkg> activate .                         # Activate pkg in .
(SR2TuringPluto) pkg> instantiate               # Install in pkg environment
(SR2TuringPluto) pkg> <delete>                  # Exit package mode
julia>

If above procedure fails, if present, try to delete the Manifest.toml file and repeat above steps. As mentioned above, these steps are only needed the first time.

If you want to use a specific tagged version, use:

# cd to cloned directory, switch to e.g. v2.0.0:
$ git checkout v2.0.0

Extract .jl from Jupyter notebook (``jupytext` needs to be installed)

jupytext --to jl "./ch7.ipynb"