Files
tldr/pages.zh/common/dub.md

28 lines
442 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# dub
> D语言的包管理器。
> 更多信息:<https://dub.pm/commandline>。
- 互动式创建一个新的D项目
`dub init {{project_name}}`
- 非互动式创建一个新的D项目
`dub init {{project_name}} -n`
- 构建并运行一个D项目
`dub`
- 安装在D项目的`dub.json``dub.sdl`文件中指定的依赖项:
`dub fetch`
- 更新D项目中的依赖项
`dub upgrade`
- 显示帮助:
`dub --help`