mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
35 lines
596 B
Plaintext
35 lines
596 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# nimble
|
|
|
|
> Package manager for the Nim programming language.
|
|
> Manage Nim projects and their dependencies.
|
|
> More information: <https://github.com/nim-lang/nimble>.
|
|
|
|
- Search for packages:
|
|
|
|
`nimble search {{search_string}}`
|
|
|
|
- Install a package:
|
|
|
|
`nimble install {{package}}`
|
|
|
|
- List installed packages:
|
|
|
|
`nimble list {{[-i|--installed]}}`
|
|
|
|
- Create a new Nimble package in the current directory:
|
|
|
|
`nimble init`
|
|
|
|
- Build a Nimble package:
|
|
|
|
`nimble build`
|
|
|
|
- Install a Nimble package:
|
|
|
|
`nimble install`
|