2024-03-02 20:53:26 -06:00
|
|
|
# mise
|
|
|
|
|
2025-05-17 23:08:20 +02:00
|
|
|
> Manage language runtimes like Node.js, Python, Ruby, Go, Java, etc and various tools.
|
2024-03-02 20:53:26 -06:00
|
|
|
> More information: <https://mise.jdx.dev>.
|
|
|
|
|
|
|
|
- List all available plugins:
|
|
|
|
|
|
|
|
`mise plugins list-all`
|
|
|
|
|
|
|
|
- Install a plugin:
|
|
|
|
|
|
|
|
`mise plugins add {{name}}`
|
|
|
|
|
|
|
|
- List runtime versions available for install:
|
|
|
|
|
|
|
|
`mise ls-remote {{name}}`
|
|
|
|
|
|
|
|
- Install a specific version of a package:
|
|
|
|
|
|
|
|
`mise install {{name}}@{{version}}`
|
|
|
|
|
|
|
|
- Set global version for a package:
|
|
|
|
|
|
|
|
`mise use --global {{name}}@{{version}}`
|
|
|
|
|
|
|
|
- Set local version for a package:
|
|
|
|
|
|
|
|
`mise use {{name}}@{{version}}`
|
|
|
|
|
|
|
|
- Set environment variable in configuration:
|
|
|
|
|
|
|
|
`mise set {{variable}}={{value}}`
|
2025-05-17 23:08:20 +02:00
|
|
|
|
|
|
|
- Pass plugin options:
|
|
|
|
|
|
|
|
`mise use {{name}}\[{{option1}}={{option1_value}},{{option2}}={{option2_value}}\]@{{version}}`
|