LoginSignup
8
8

More than 5 years have passed since last update.

windowsのパッケージ管理chocolateyを使ってmongodbを入れる

Posted at

いちいち、インストーラーでソフトウェアをインストールするのはめんどくさい。
Macのbrewみたいのがwindowsでないか調べてみた。
そしたら、chocolateyというものが見つかったのでこれを使ってみる。

chocolatey

https://github.com/chocolatey/chocolatey
https://github.com/chocolatey/chocolatey/wiki/Installation

インストール手順

Command Line(コマンドプロンプト)

コマンドプロンプトでchocolateyをインストールする。

@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('http://bit.ly/psChocInstall'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin

WindowsPowerShell

WindowsPowerShellでchocolateyを使いmonogodbをインストールする。

cinst mongodb

https://chocolatey.org/packages
ここでインストールできるパッケージを調べることができる。

簡単!

8
8
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
8