Skip to content

Instantly share code, notes, and snippets.

@rajinwonderland
Last active January 25, 2020 19:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rajinwonderland/face4f065be1f233d045d7bf1cbe3809 to your computer and use it in GitHub Desktop.
Save rajinwonderland/face4f065be1f233d045d7bf1cbe3809 to your computer and use it in GitHub Desktop.
Julia Cheat Sheet [WIP]

Julia Cheat Sheet [WIP]

Useful Links

Using Pkg in a Julia session

To install a package, add a ] before the add "PackageName"statement:

julia> ] add "Package"
  • List installed packages (human-readable) Pkg.status()
  • List installed packages (machine-readable) Pkg.installed()
  • Update all packages Pkg.update()
  • Install PackageName Pkg.add("PackageName")
  • Rebuild PackageName Pkg.build("PackageName")
  • Use PackageName (after install) using PackageName
  • Remove PackageName Pkg.rm("PackageName")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment