Answers:
如果要在Mac OS X上等效于apt-get或yum,则有两种选择。
您可以使用brew install PACKAGE_NAME
或port install PACKAGE_NAME
安装可用的软件包。
brew
就Mac OS的软件包管理器而言,它已经几乎成为标准。但是,如果您知道软件包管理器的工作方式以及所有文件的存放位置,那么我相信仍然应该有可能。https://stackoverflow.com/a/20889841
您需要安装Homebrew或YUM。我建议使用HomeBrew。要安装它,请在终端中输入以下命令。
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
然后使用brew install Package_name
ruby
预装了每个OSX?
可以使用名为Fink- 如何在Mac OS X上安装apt-get的第三方软件在OS X 10.9上使用apt-get,例如基于Deb的Linux 。但是,与Homebrew和OS X软件包管理器不同,Fink不使用/ usr / local /路径来安装软件。这只是意味着,Fink适用于可以处理软件冲突(版本不同)的高级用户。对我来说,自制是最好的包裹管理器...
这些是其他方式
# you can use sdk install command to install software
$ sdk install package_name
例子:
MacdeMacBook-Pro$ sdk install java 8.0.191-oracle
Oracle requires that you agree with the Oracle Binary Code License Agreement
prior to installation. The license agreement can be found at:
http://www.oracle.com/technetwork/java/javase/terms/license/index.html
Do you agree to the terms of this agreement? (Y/n): Y
Downloading: java 8.0.191-oracle
In progress...
########################## 100.0%
We will be needing super powers...
Password:
Repackaging Java 8u191...
Attaching to the DMG...
Mounting DMG as Volume...
Volume(s) mounted successfully
Installing PKG inside DMG...
installer: Package name is JDK 8 Update 191
installer: Installing at base path /
installer: The install was successful.
Copy JDK Home to temp folder...
Preparing archive...
Unmounting volume...
"/Volumes/JDK 8 Update 191" unmounted successfully.
Done repackaging...
Cleaning up cookie...
Installing: java 8.0.191-oracle
Done installing!
Setting java 8.0.191-oracle as default.
MacdeMacBook-Pro:Homebrew mac$ java -version
java version "1.8.0_191"
Java(TM) SE Runtime Environment (build 1.8.0_191-b12)
Java HotSpot(TM) 64-Bit Server VM (build 25.191-b12, mixed mode)
$ sdk install或i [版本]
$ sdk卸载或rm
$ sdk列表或ls [候选]#$ sdk使用或u [版本] $ sdk默认或d [版本] $ sdk当前或c [候选] $ sdk升级或ug [候选]
$ sdk版本或v $ sdk广播或b $ sdk帮助或h $ sdk脱机[启用|禁用] $ sdk selfupdate [强制] $ sdk更新$ sdk刷新
sdk
。