Skip to content

Commit

Permalink
Fix installation process steps (#443)
Browse files Browse the repository at this point in the history
I had to do this to avoid the error message
  Pkg.update ERROR: UndefVarError: Pkg not defined
which was resolved by 
  julia> using Pkg
beforehand.
  • Loading branch information
tcveatch committed Jun 5, 2021
1 parent c295277 commit feacb66
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions docs/src/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Installation
Installing Convex.jl is a one step process. Open up Julia and type :

```julia
using Pkg
Pkg.update()
Pkg.add("Convex")
```
Expand Down

0 comments on commit feacb66

Please sign in to comment.