How to run "brew" command in windows..?

109,899

Solution 1

Edit: Homebrew is also usable on Windows Subsystem for Linux (WSL) since version 2.0.0 (released February 2019), as detailed by @VonC's answer below. The instructions for installation/use are available at:


Homebrew is MacOS only command line installer application and it doesn't exist for Windows.

The Windows alternatives are:

Source: https://laracasts.com/discuss/channels/laravel/homebrew-install-on-windows-os

Solution 2

It shows "'brew' is not recognized as an internal or external command" in windows command prompt.

Not anymore, 19 months later (Feb. 2019, compared to July 2017)

At least, not on Windows 10, in a WSL (Windows Subsystem for Linux) session.
As mentioned by Mike McQuaid

Homebrew 2.0.0 has been released (at @FOSDEM!) with official Linux and Windows 10 WSL support, brew cleanup running automatically (opt-out with HOMEBREW_NO_INSTALL_CLEANUP), no more options in Homebrew/core and no longer running on OS X 10.8 and older.

See Homebrew 2.0.0.

“Homebrew on Linux” is called “Linuxbrew”.
You can install it in your home directory, so it does not require sudo, and use it to install software that your host distribution’s package manager does not provide. Linuxbrew uses its own repository for formulae: Linuxbrew/homebrew-core.

So again, this is not native Windows support, but Linux (through the WSL layer, on Windows 10).

Solution 3

As mentioned in the comments, Homebrew is a package manager for OSX, much like Aptitude in linux. You can't install Homebrew on Windows and never will be able to so you need to find a new way to accomplish what you are doing. I think you're trying to work with Google's V8 Javascript engine so why not try: https://github.com/phpv8/v8js

Solution 4

Use this

  • Download git bash

  • Run below command, this will install homebrew to your PC

  • now this can help you run brew command

bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
  • If you want to run directly without bash then It can be done using cmd also

  • If following with cmd then you need to add the location of homebrew downloaded folder to your environment path variables

Try this in windows CMD

curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh

Now add this folder location "C:\Users\[NAME]\homebrew\" to path variable

TO add in Path Variables Follow below:

enter image description here

enter image description here

Share:
109,899
ArunValaven
Author by

ArunValaven

I am working as a web developer. Please try to answer my unsolved questions...

Updated on May 04, 2021

Comments

  • ArunValaven
    ArunValaven almost 3 years

    It shows "'brew' is not recognized as an internal or external command" in windows command prompt.

    enter image description here

    I am trying to install codeigniter-reactjs-example from github, where first command is brew. How to run this command to install that project in Windows..?