HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

mise — Manage language runtimes like Node.js, Python, Ruby, Go, Java, etc and various tools. More informati

Submitted by: @import:tldr-pages··
0
Viewed 0 times
misecommandlanguagenodelikeruntimesmanagecli

Problem

How to use the mise command: Manage language runtimes like Node.js, Python, Ruby, Go, Java, etc and various tools. More information: <https://mise.jdx.dev/cli/>.

Solution

mise — Manage language runtimes like Node.js, Python, Ruby, Go, Java, etc and various tools. More information: <https://mise.jdx.dev/cli/>.

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 {{[-g|--global]}} {{name}}@{{version}}


Set local version for a package:
mise use {{name}}@{{version}}


Set environment variable in configuration:
mise set {{variable}}={{value}}


Pass plugin options:
mise use {{name}}\[{{option1}}={{option1_value}},{{option2}}={{option2_value}}\]@{{version}}

Code Snippets

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 {{[-g|--global]}} {{name}}@{{version}}

Context

tldr-pages: common/mise

Revisions (0)

No revisions yet.