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

nimble — Package manager for the Nim programming language. Manage Nim projects and their dependencies. More i

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

Problem

How to use the nimble command: Package manager for the Nim programming language. Manage Nim projects and their dependencies. More information: <https://github.com/nim-lang/nimble>.

Solution

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

Code Snippets

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

Context

tldr-pages: common/nimble

Revisions (0)

No revisions yet.