Mac OS Xにapt-getまたはYUMをインストールする方法

Mac OS Xにapt-getまたはYUMをインストールする方法

apt-getまたはいずれかを使用したいですyum

どのようにインストールして正常に実行しますか?

答え1

Mac OS Xでapt-getまたはyumと同等の機能が必要な場合は、2つのオプションがあります。

  1. 自分で作った:http://brew.sh
  2. Macポート:http://www.macports.org

brew install PACKAGE_NAME利用可能なパッケージを使用またはインストールできますport install PACKAGE_NAME

答え2

HomebrewまたはYUMがインストールされている必要があります。 Homebrewをインストールするには、端末に次のコマンドを入力します。

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

次に Brew を使用してインストールします。パッケージ名

答え3

Fink というサードパーティ製ソフトウェアを使用して、OS X 10.9 (たとえば Deb ベースの Linux) で apt-get を使用できます。Mac OS Xにapt-getをインストールする方法。ただし、Homebrew および OS X パッケージマネージャとは異なり、Fink は /usr/local/ パスを使用してソフトウェアをインストールしません。これは、Finkがソフトウェアの競合(バージョンの違い)を処理できる少し上級ユーザーに適していることを意味します。 Homebrewは私にとって最高のパッケージマネージャです。

答え4

これらは他の方法です

入場https://sdkman.io/

# 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)

関連情報