Mac中MacPorts安装和使用

访问官方网站http://www.macports.org/install.php,下一步下一步安装即可。
安装后:

$vim ~/.bash_profile

加入

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

然后

$source ~/.bash_profile

使用:
更新ports tree和MacPorts版本,强烈推荐第一次运行的时候使用-v参数,显示详细的更新过程。

$sudo port -v selfupdate

搜索索引中的软件

$port search name

安装新软件

$sudo port install name

卸载软件

$sudo port uninstall name

查看有更新的软件以及版本

$port outdated

升级可以更新的软件

$sudo port upgrade outdated

你可能感兴趣的:(macports)