How to add, update and remove packages in Julia Programming on MacOs

Опубликовано: 26 Апрель 2024
на канале: tondekush
206
3

visit https://julialang.org
-Download the software for your system
-Open terminal and then type Julia to start the session
-Import pkg using the command using Pkg
-Check for packages you need using the following sites:
https://github.com/svaksha/Julia.jl
https://juliahub.com/ui/Packages

use Pkg.add("package you need")
use Pkg.status() to see what you have installed
use Pkg.update("package that needs updating")
use Pkg.rm("to remove the package you don't need")

#Julia #mathematics #programming #github