1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:02:08 +02:00
tldr/pages/common/mise.md
Albert d6a9ed65c7
mise: add page (#12393)
* mise: add page

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-03-03 08:23:26 +05:30

32 lines
584 B
Markdown

# mise
> Manage versions of different packages.
> 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}}`