Skip to content

Commit

Permalink
update readme to reflect working/tested instalation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
huckl3b3rry87 committed Jul 7, 2020
1 parent ee8ec93 commit 20a5dbb
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,20 @@ sudo apt-get install gfortran
sudo apt-get install liblapack-dev
sudo apt-get install libblas-dev
```
Also, make sure that you are using julia 0.6.2

Also, make sure that you are using julia 0.6.4
```
sudo wget https://julialang-s3.julialang.org/bin/linux/x64/0.6/julia-0.6.4-linux-x86_64.tar.gz
sudo tar -xvf julia-0.6.4-linux-x86_64.tar.gz -C /opt
```
sudo wget https://julialang-s3.julialang.org/bin/linux/x64/0.6/julia-0.6.2-linux-x86_64.tar.gz
sudo tar -xvf julia-0.6.2-linux-x86_64.tar.gz -C /opt
```
Then open up julia and install NLOptControl

Then open up julia and install a few specific packages and NLOptControl
```julia
Pkg.clone("https://github.com/JuliaMPC/NLOptControl.jl")
Pkg.add("ReverseDiffSparse")
Pkg.checkout("ReverseDiffSparse")
Pkg.add("KNITRO")
Pkg.pin("KNITRO",v"0.4")
Pkg.clone("https://github.com/JuliaMPC/NLOptControl.jl")
```

## Citation
Expand Down

0 comments on commit 20a5dbb

Please sign in to comment.