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.
オンラインのオープンソース プロジェクトは初めてです。リポジトリを複製しましたが、コードを実行するために必要な特定の依存関係があります。それらを見つけてダウンロードするにはどうすればよいですか?
ありがとう
Git はバージョン管理には便利ですが、通常、依存関係の管理には適していません。たとえば、これが node.js の場合、依存関係を 内で指定できますpackage.json。そこから、でインストールできますnpm install。
package.json
npm install
したがって、依存関係を管理する方法は、使用しているスタックによって異なります。