apt-get
またはyum
を使用したい。
それらをインストールして実行を成功させる方法は?
Mac OS Xでapt-getまたはyumに相当するものが必要な場合は、2つの選択肢があります。
brew install PACKAGE_NAME
またはport install PACKAGE_NAME
を使用して、利用可能なパッケージをインストールできます。
HomebrewまたはYUMをインストールする必要があります。 HomeBrewの使用をお勧めします。これをインストールするには、ターミナルで次のコマンドを入力します。
Ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
次に、brew install Package_nameを使用します
Fink- Mac OS Xにapt-getをインストールする方法 という名前のサードパーティ製ソフトウェアを使用して、DebベースのLinuxのようなOS X 10.9でapt-getを使用することが可能です。ただし、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)