# linuxbrew **Repository Path**: pybeta/linuxbrew ## Basic Information - **Project Name**: linuxbrew - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2015-01-10 - **Last Updated**: 2024-10-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Linuxbrew Linuxbrew is a fork of [Homebrew](http://brew.sh), the Mac OS package manager, for Linux. Features, usage and installation instructions are [summarised on the homepage](http://brew.sh/linuxbrew/). Install Linuxbrew (tl;dr) ------------------------- Paste at a Terminal prompt: ``` sh ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/linuxbrew/go/install)" ``` See [Dependencies](#dependencies) and [Installation](#installation) below for more details. Features -------- + Can install software to a home directory and so does not require sudo + Install software not packaged by the native distribution + Install up-to-date versions of software when the native distribution is old + Use the same package manager to manage both your Mac and Linux machines Dependencies ------------ * **Ruby** 1.8.6 or newer + **GCC** 4.2 or newer Paste at a Terminal prompt: ### Debian or Ubuntu ```sh sudo apt-get install build-essential curl git m4 ruby texinfo libbz2-dev libcurl4-openssl-dev libexpat-dev libncurses-dev zlib1g-dev ``` ### Fedora ```sh sudo yum groupinstall 'Development Tools' && sudo yum install curl git m4 ruby texinfo bzip2-devel curl-devel expat-devel ncurses-devel zlib-devel ``` Installation ------------ Paste at a Terminal prompt: ``` sh ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/linuxbrew/go/install)" ``` Or if you prefer: ```sh git clone https://github.com/Homebrew/linuxbrew.git ~/.linuxbrew ``` Add to your `.bashrc` or `.zshrc`: ```sh export PATH="$HOME/.linuxbrew/bin:$PATH" export MANPATH="$HOME/.linuxbrew/share/man:$MANPATH" export INFOPATH="$HOME/.linuxbrew/share/info:$INFOPATH" ``` You're done! ```sh brew install $WHATEVER_YOU_WANT ``` ## What Packages Are Available? 1. Type `brew search` for a list. 2. Or visit [braumeister.org](http://braumeister.org) to browse packages online. 3. Or use [`brew desc`](https://github.com/telemachus/homebrew-desc) to browse packages from the command line. ## More Documentation `brew help`, `man brew` or check [our documentation](https://github.com/Homebrew/linuxbrew/tree/master/share/doc/homebrew#readme). ## Troubleshooting First, please run `brew update` and `brew doctor`. Second, read the [Troubleshooting Checklist](https://github.com/Homebrew/linuxbrew/blob/master/share/doc/homebrew/Troubleshooting.md#troubleshooting). **If you don't read these it will take us far longer to help you with your problem.** ## Something broke! Many of the Homebrew formulae work on either Mac or Linux without changes, but some formulae will need to be adapted for Linux. If a formula doesn't work, [open an issue on GitHub](https://github.com/Homebrew/linuxbrew/issues) or, even better, submit a pull request. ## Security Please report security issues to security@brew.sh. ## Who Are You? Linuxbrew is maintained by [Shaun Jackman](https://github.com/sjackman). Homebrew's current maintainers are [Misty De Meo](https://github.com/mistydemeo), [Adam Vandenberg](https://github.com/adamv), [Jack Nagel](https://github.com/jacknagel), [Mike McQuaid](https://github.com/mikemcquaid), [Brett Koonce](https://github.com/asparagui) and [Tim Smith](https://github.com/tdsmith). Homebrew was originally created by [Max Howell](https://github.com/mxcl). ## License Code is under the [BSD 2 Clause (NetBSD) license](https://github.com/Homebrew/homebrew/tree/master/LICENSE.txt). ## Donations We accept tips through Gratipay. ### Shaun Jackman for Linuxbrew [![Gittip](https://img.shields.io/gratipay/sjackman.svg?style=flat)](https://gratipay.com/sjackman/) ### Homebrew [![Gratipay](https://img.shields.io/gratipay/Homebrew.svg?style=flat)](https://gratipay.com/Homebrew/)