MacOS 管理工具 MacPort

安装

MacPort 官网地址:

https://www.macports.org/install.php

下载对应的版本进行安装.

使用教程详见: https://guide.macports.org/

快速开始

检索

port search --name --glob 'php*'

安装

port install portname

如果出现无法访问 port 命令

  1. 检测环境变量

    /opt/local/sbin/
    /opt/local/bin/

如果没有的话

export PATH=/opt/local/bin:/opt/local/sbin:$PATH

一般情况会自动添加, 但是我使用 zsh 就没有自动…

  1. 如果环境变量没问题, 请重启命令行工具

常用命令

port selfupdate 自我更新

查找包

  • port search --name --glob 'php*'
  • port search --name --line --glob 'php*'
  • port search --name --line --regex '^php\d*$'

安装包

  • port install apache2
  • port deps apache2 包的依赖关系
  • port clean portname 安装某包出错后, 重新安装之前先 clean 一下
  • port uninstall portname 卸载

当前信息

  • port installed 已安装
  • port outdated 过时的
  • port dependents 依赖关系
  • port info 包的维护人员等的信息
Donate - Support to make this site better.
捐助 - 支持我让我做得更好.