• mac安装brew 软件包管理工具Homebrew


    brew 全称Homebrew  是Mac OSX上的软件包管理工具

    Homebrew 安装和卸载工具 只用一行命令就能完成

    官方地址:    http://brew.sh/index.html

     
    mac 自带ruby    
    打开命令行  terminal  
    输入  :
    [java] view plain copy
     
     在CODE上查看代码片派生到我的代码片
    1. ruby -version  
     

    1) 安装命令  

     
    [java] view plain copy
     
     在CODE上查看代码片派生到我的代码片
    1. ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"  

    假如已经安装了  输入如下命令
     
    [java] view plain copy
     
     在CODE上查看代码片派生到我的代码片
    1. ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"  

    命令行输出:
     
     

    2) brew 使用方法

    命令行 输入:  brew

    输出:

    [java] view plain copy
     
     在CODE上查看代码片派生到我的代码片
    1. Example usage:  
    2.   brew [info | home | options ] [FORMULA...]  
    3.   brew install FORMULA...  
    4.   brew uninstall FORMULA...  
    5.   brew search [foo]  
    6.   brew list [FORMULA...]  
    7.   brew update  
    8.   brew upgrade [FORMULA...]  
    9.   brew pin/unpin [FORMULA...]  
    10.   
    11. Troubleshooting:  
    12.   brew doctor  
    13.   brew install -vd FORMULA  
    14.   brew [--env | config]  
    15.   
    16. Brewing:  
    17.   brew create [URL [--no-fetch]]  
    18.   brew edit [FORMULA...]  
    19.   open https://github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/Formula-Cookbook.md  
    20.   
    21. Further help:  
    22.   man brew  
    23.   brew home  

    3) 安装工具

    举个栗子:   wget  这个工具

    输入命令:   brew install wget 

    如图:

    4)  卸载

    拿上面的栗子:   wget 工具

    输入命令    brew uninstall wget

    5)  工具安装的目录

    Homebrew 会将套件安装到独立目录,并将文件软链接至/usr/local 。

    [java] view plain copy
     
     在CODE上查看代码片派生到我的代码片
    1. $ cd /usr/local  
    2. $ find Cellar  
    3. Cellar/wget/1.16.1  
    4. Cellar/wget/1.16.1/bin/wget  
    5. Cellar/wget/1.16.1/share/man/man1/wget.1  
    6.   
    7. $ ls -l bin  
    8. bin/wget -> ../Cellar/wget/1.16.1/bin/wget  
     
     
    Homebrew 的所有文件均会被安装到预定义目录下,所以无需担心 Homebrew 的安装位置。

    6) 其他命令

    brew list           列出已安装的软件

    brew update     更新brew

    brew home       用浏览器打开brew的官方网站

    brew info         显示软件信息

    brew deps        显示包依赖

          更多命令请看:    https://git.io/brew-docs

  • 相关阅读:
    超哥笔记--linux准备知识(1)
    爬虫系列---scrapy全栈数据爬取框架(Crawlspider)
    爬虫系列---scrapy post请求、框架组件和下载中间件+boss直聘爬取
    pymongo 一篇文章搞定
    一篇文章搞定mongodb
    python进阶(四) windows下虚拟环境使用
    java基础(四) -变量类型
    java基础(二) -对象和类
    java基础(一) -语法
    Linux常用命令大全
  • 原文地址:https://www.cnblogs.com/frchen/p/5780255.html
Copyright © 2020-2023  润新知