Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是在线开源项目的新手。我已经克隆了一个 repo,但是运行代码需要某些依赖项。我如何找到/下载它们?
谢谢
Git 对版本控制很有用,但通常不适合依赖管理。例如,如果这是 node.js,您可以在package.json. 从那里,您可以使用npm install.
package.json
npm install
因此,您管理依赖项的方式将根据您使用的堆栈而改变。