mirror of https://github.com/CrimsonTome/tldr.git
30 lines
485 B
Markdown
30 lines
485 B
Markdown
# 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`
|
|
|
|
- Create a new Nimble package in the current directory:
|
|
|
|
`nimble init`
|
|
|
|
- Build a Nimble package:
|
|
|
|
`nimble build`
|
|
|
|
- Install a Nimble package:
|
|
|
|
`nimble install`
|