Linux command
nimble 命令
文本
复制后可按需替换文件名、目录或参数。
常用示例
Install package
nimble install [package]
Build project
nimble build
Run project
nimble run
Initialize project
nimble init
Search packages
nimble search [query]
List installed packages
nimble list --installed
Update packages
nimble refresh
Run tests
nimble test
说明
nimble is the Nim package manager. It installs dependencies and manages projects. The tool handles package installation. Supports local and remote packages.
参数
- install _PKG_
- Install package.
- build
- Build current project.
- run
- Build and run.
- init
- Initialize new project.
- search _QUERY_
- Search packages.
- test
- Run tests.
- --help
- Display help information.
FAQ
What is the nimble command used for?
nimble is the Nim package manager. It installs dependencies and manages projects. The tool handles package installation. Supports local and remote packages.
How do I run a basic nimble example?
Run `nimble install [package]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does install _PKG_ do in nimble?
Install package.