List of Available Commands in Julia Package Management Mode
Description
By typing the right bracket ] in the Julia REPL, you can switch to package management mode. The available commands in package management mode are as follows.
| Command | Function |
|---|---|
add foo | Adds the package foo. |
free foo | Unpins the package version. |
help, ? | Shows these commands. |
pin foo | Pins the version of the package foo. |
remove foo, rm foo | Removes the package foo. |
test foo | Test-runs the package foo. |
status, st | Shows all installed packages and their versions. Typing a package name shows only its version. |
undo | Reverses the most recent action. |
update, up | Updates all packages to their latest versions. Typing a package name updates only that specific package. |
Environment
- OS: Windows10
- Version: Julia 1.7.1
