How to install apt-get or YUM on Mac OS X
up vote
51
down vote
favorite
I want to use either of apt-get
or yum
.
How to install them and make them successful running?
osx package-management
add a comment |
up vote
51
down vote
favorite
I want to use either of apt-get
or yum
.
How to install them and make them successful running?
osx package-management
2
Why do you want to install them? What software do you want to install that you expect to find as .deb or .rpm files which will work on an OS X install?
– a CVn
Jun 26 '13 at 11:08
1
Both utilities are too Linux-specific (and/or too Fedora/Debian-specific) so they won't work on OSX without serious effort on your part,so Michael's question stands: what exactly is it you want to do?
– schaiba
Jun 26 '13 at 11:30
2
obviously OP is asking about the equivalent -- seriously...
– aequalsb
Feb 12 '17 at 17:31
add a comment |
up vote
51
down vote
favorite
up vote
51
down vote
favorite
I want to use either of apt-get
or yum
.
How to install them and make them successful running?
osx package-management
I want to use either of apt-get
or yum
.
How to install them and make them successful running?
osx package-management
osx package-management
edited Nov 25 at 14:41
Rui F Ribeiro
38.3k1475126
38.3k1475126
asked Jun 26 '13 at 10:47
Karan-41317
358135
358135
2
Why do you want to install them? What software do you want to install that you expect to find as .deb or .rpm files which will work on an OS X install?
– a CVn
Jun 26 '13 at 11:08
1
Both utilities are too Linux-specific (and/or too Fedora/Debian-specific) so they won't work on OSX without serious effort on your part,so Michael's question stands: what exactly is it you want to do?
– schaiba
Jun 26 '13 at 11:30
2
obviously OP is asking about the equivalent -- seriously...
– aequalsb
Feb 12 '17 at 17:31
add a comment |
2
Why do you want to install them? What software do you want to install that you expect to find as .deb or .rpm files which will work on an OS X install?
– a CVn
Jun 26 '13 at 11:08
1
Both utilities are too Linux-specific (and/or too Fedora/Debian-specific) so they won't work on OSX without serious effort on your part,so Michael's question stands: what exactly is it you want to do?
– schaiba
Jun 26 '13 at 11:30
2
obviously OP is asking about the equivalent -- seriously...
– aequalsb
Feb 12 '17 at 17:31
2
2
Why do you want to install them? What software do you want to install that you expect to find as .deb or .rpm files which will work on an OS X install?
– a CVn
Jun 26 '13 at 11:08
Why do you want to install them? What software do you want to install that you expect to find as .deb or .rpm files which will work on an OS X install?
– a CVn
Jun 26 '13 at 11:08
1
1
Both utilities are too Linux-specific (and/or too Fedora/Debian-specific) so they won't work on OSX without serious effort on your part,so Michael's question stands: what exactly is it you want to do?
– schaiba
Jun 26 '13 at 11:30
Both utilities are too Linux-specific (and/or too Fedora/Debian-specific) so they won't work on OSX without serious effort on your part,so Michael's question stands: what exactly is it you want to do?
– schaiba
Jun 26 '13 at 11:30
2
2
obviously OP is asking about the equivalent -- seriously...
– aequalsb
Feb 12 '17 at 17:31
obviously OP is asking about the equivalent -- seriously...
– aequalsb
Feb 12 '17 at 17:31
add a comment |
3 Answers
3
active
oldest
votes
up vote
55
down vote
accepted
If you want the equivalent to apt-get or yum on Mac OS X, you have two choices.
- Homebrew: http://brew.sh
- Macports: http://www.macports.org
You can use brew install PACKAGE_NAME
or port install PACKAGE_NAME
to install the package available.
1
There are guides on how to run Hombrew side-by-side with Macports or Fink, but it is generally recommended to choose one and stick with it. Homebrew is pretty much the standard these days. There is only a single instance I can recall personally, where a package I needed was available via Macports and not Homebrew, and that was an X11-based GUI browser -- Firefox, I believe, which would have been really nice to browse with over SSH in some specific localhost scenario I was working with at the time. It's just a personal preference thing, mostly. Homebrew is the best and most user-friendly, IMHO.
– rubynorails
Dec 12 '15 at 4:57
3
what is the exact syntax to install apt-get ? brew install apt-get gives "Error: No available formula with the name "apt-get"
– Daniele
Jun 14 '17 at 15:20
add a comment |
up vote
8
down vote
You need to install either Homebrew or YUM. I recommend using HomeBrew. To install it enter the following command in terminal.
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
then use brew install Package_name
1
Doesruby
come pre-installed with each OSX?
– Anthon
Apr 3 '15 at 14:07
@Anthon: Yes, for several years now.
– cdunn2001
May 15 '15 at 8:23
Thanks for including the command line download for HomeBrew. Beautiful.
– shiri
Oct 9 '17 at 9:05
add a comment |
up vote
6
down vote
It is possible to use apt-get on OS X 10.9 like Deb based Linux using a third party software named Fink - How to Install apt-get on Mac OS X. However, unlike Homebrew and OS X Package Managers, Fink does not use /usr/local/ path to install software. It simply means, Fink is for a bit advanced users who can handle the software conflicts (for difference in version).
Homebrew, to me is the best package manager...
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
55
down vote
accepted
If you want the equivalent to apt-get or yum on Mac OS X, you have two choices.
- Homebrew: http://brew.sh
- Macports: http://www.macports.org
You can use brew install PACKAGE_NAME
or port install PACKAGE_NAME
to install the package available.
1
There are guides on how to run Hombrew side-by-side with Macports or Fink, but it is generally recommended to choose one and stick with it. Homebrew is pretty much the standard these days. There is only a single instance I can recall personally, where a package I needed was available via Macports and not Homebrew, and that was an X11-based GUI browser -- Firefox, I believe, which would have been really nice to browse with over SSH in some specific localhost scenario I was working with at the time. It's just a personal preference thing, mostly. Homebrew is the best and most user-friendly, IMHO.
– rubynorails
Dec 12 '15 at 4:57
3
what is the exact syntax to install apt-get ? brew install apt-get gives "Error: No available formula with the name "apt-get"
– Daniele
Jun 14 '17 at 15:20
add a comment |
up vote
55
down vote
accepted
If you want the equivalent to apt-get or yum on Mac OS X, you have two choices.
- Homebrew: http://brew.sh
- Macports: http://www.macports.org
You can use brew install PACKAGE_NAME
or port install PACKAGE_NAME
to install the package available.
1
There are guides on how to run Hombrew side-by-side with Macports or Fink, but it is generally recommended to choose one and stick with it. Homebrew is pretty much the standard these days. There is only a single instance I can recall personally, where a package I needed was available via Macports and not Homebrew, and that was an X11-based GUI browser -- Firefox, I believe, which would have been really nice to browse with over SSH in some specific localhost scenario I was working with at the time. It's just a personal preference thing, mostly. Homebrew is the best and most user-friendly, IMHO.
– rubynorails
Dec 12 '15 at 4:57
3
what is the exact syntax to install apt-get ? brew install apt-get gives "Error: No available formula with the name "apt-get"
– Daniele
Jun 14 '17 at 15:20
add a comment |
up vote
55
down vote
accepted
up vote
55
down vote
accepted
If you want the equivalent to apt-get or yum on Mac OS X, you have two choices.
- Homebrew: http://brew.sh
- Macports: http://www.macports.org
You can use brew install PACKAGE_NAME
or port install PACKAGE_NAME
to install the package available.
If you want the equivalent to apt-get or yum on Mac OS X, you have two choices.
- Homebrew: http://brew.sh
- Macports: http://www.macports.org
You can use brew install PACKAGE_NAME
or port install PACKAGE_NAME
to install the package available.
answered Jun 26 '13 at 12:00
prosseek
2,745113438
2,745113438
1
There are guides on how to run Hombrew side-by-side with Macports or Fink, but it is generally recommended to choose one and stick with it. Homebrew is pretty much the standard these days. There is only a single instance I can recall personally, where a package I needed was available via Macports and not Homebrew, and that was an X11-based GUI browser -- Firefox, I believe, which would have been really nice to browse with over SSH in some specific localhost scenario I was working with at the time. It's just a personal preference thing, mostly. Homebrew is the best and most user-friendly, IMHO.
– rubynorails
Dec 12 '15 at 4:57
3
what is the exact syntax to install apt-get ? brew install apt-get gives "Error: No available formula with the name "apt-get"
– Daniele
Jun 14 '17 at 15:20
add a comment |
1
There are guides on how to run Hombrew side-by-side with Macports or Fink, but it is generally recommended to choose one and stick with it. Homebrew is pretty much the standard these days. There is only a single instance I can recall personally, where a package I needed was available via Macports and not Homebrew, and that was an X11-based GUI browser -- Firefox, I believe, which would have been really nice to browse with over SSH in some specific localhost scenario I was working with at the time. It's just a personal preference thing, mostly. Homebrew is the best and most user-friendly, IMHO.
– rubynorails
Dec 12 '15 at 4:57
3
what is the exact syntax to install apt-get ? brew install apt-get gives "Error: No available formula with the name "apt-get"
– Daniele
Jun 14 '17 at 15:20
1
1
There are guides on how to run Hombrew side-by-side with Macports or Fink, but it is generally recommended to choose one and stick with it. Homebrew is pretty much the standard these days. There is only a single instance I can recall personally, where a package I needed was available via Macports and not Homebrew, and that was an X11-based GUI browser -- Firefox, I believe, which would have been really nice to browse with over SSH in some specific localhost scenario I was working with at the time. It's just a personal preference thing, mostly. Homebrew is the best and most user-friendly, IMHO.
– rubynorails
Dec 12 '15 at 4:57
There are guides on how to run Hombrew side-by-side with Macports or Fink, but it is generally recommended to choose one and stick with it. Homebrew is pretty much the standard these days. There is only a single instance I can recall personally, where a package I needed was available via Macports and not Homebrew, and that was an X11-based GUI browser -- Firefox, I believe, which would have been really nice to browse with over SSH in some specific localhost scenario I was working with at the time. It's just a personal preference thing, mostly. Homebrew is the best and most user-friendly, IMHO.
– rubynorails
Dec 12 '15 at 4:57
3
3
what is the exact syntax to install apt-get ? brew install apt-get gives "Error: No available formula with the name "apt-get"
– Daniele
Jun 14 '17 at 15:20
what is the exact syntax to install apt-get ? brew install apt-get gives "Error: No available formula with the name "apt-get"
– Daniele
Jun 14 '17 at 15:20
add a comment |
up vote
8
down vote
You need to install either Homebrew or YUM. I recommend using HomeBrew. To install it enter the following command in terminal.
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
then use brew install Package_name
1
Doesruby
come pre-installed with each OSX?
– Anthon
Apr 3 '15 at 14:07
@Anthon: Yes, for several years now.
– cdunn2001
May 15 '15 at 8:23
Thanks for including the command line download for HomeBrew. Beautiful.
– shiri
Oct 9 '17 at 9:05
add a comment |
up vote
8
down vote
You need to install either Homebrew or YUM. I recommend using HomeBrew. To install it enter the following command in terminal.
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
then use brew install Package_name
1
Doesruby
come pre-installed with each OSX?
– Anthon
Apr 3 '15 at 14:07
@Anthon: Yes, for several years now.
– cdunn2001
May 15 '15 at 8:23
Thanks for including the command line download for HomeBrew. Beautiful.
– shiri
Oct 9 '17 at 9:05
add a comment |
up vote
8
down vote
up vote
8
down vote
You need to install either Homebrew or YUM. I recommend using HomeBrew. To install it enter the following command in terminal.
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
then use brew install Package_name
You need to install either Homebrew or YUM. I recommend using HomeBrew. To install it enter the following command in terminal.
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
then use brew install Package_name
edited Apr 3 '15 at 14:06
Anthon
59.8k17102163
59.8k17102163
answered Apr 3 '15 at 13:37
Wassim Seifeddine
18613
18613
1
Doesruby
come pre-installed with each OSX?
– Anthon
Apr 3 '15 at 14:07
@Anthon: Yes, for several years now.
– cdunn2001
May 15 '15 at 8:23
Thanks for including the command line download for HomeBrew. Beautiful.
– shiri
Oct 9 '17 at 9:05
add a comment |
1
Doesruby
come pre-installed with each OSX?
– Anthon
Apr 3 '15 at 14:07
@Anthon: Yes, for several years now.
– cdunn2001
May 15 '15 at 8:23
Thanks for including the command line download for HomeBrew. Beautiful.
– shiri
Oct 9 '17 at 9:05
1
1
Does
ruby
come pre-installed with each OSX?– Anthon
Apr 3 '15 at 14:07
Does
ruby
come pre-installed with each OSX?– Anthon
Apr 3 '15 at 14:07
@Anthon: Yes, for several years now.
– cdunn2001
May 15 '15 at 8:23
@Anthon: Yes, for several years now.
– cdunn2001
May 15 '15 at 8:23
Thanks for including the command line download for HomeBrew. Beautiful.
– shiri
Oct 9 '17 at 9:05
Thanks for including the command line download for HomeBrew. Beautiful.
– shiri
Oct 9 '17 at 9:05
add a comment |
up vote
6
down vote
It is possible to use apt-get on OS X 10.9 like Deb based Linux using a third party software named Fink - How to Install apt-get on Mac OS X. However, unlike Homebrew and OS X Package Managers, Fink does not use /usr/local/ path to install software. It simply means, Fink is for a bit advanced users who can handle the software conflicts (for difference in version).
Homebrew, to me is the best package manager...
add a comment |
up vote
6
down vote
It is possible to use apt-get on OS X 10.9 like Deb based Linux using a third party software named Fink - How to Install apt-get on Mac OS X. However, unlike Homebrew and OS X Package Managers, Fink does not use /usr/local/ path to install software. It simply means, Fink is for a bit advanced users who can handle the software conflicts (for difference in version).
Homebrew, to me is the best package manager...
add a comment |
up vote
6
down vote
up vote
6
down vote
It is possible to use apt-get on OS X 10.9 like Deb based Linux using a third party software named Fink - How to Install apt-get on Mac OS X. However, unlike Homebrew and OS X Package Managers, Fink does not use /usr/local/ path to install software. It simply means, Fink is for a bit advanced users who can handle the software conflicts (for difference in version).
Homebrew, to me is the best package manager...
It is possible to use apt-get on OS X 10.9 like Deb based Linux using a third party software named Fink - How to Install apt-get on Mac OS X. However, unlike Homebrew and OS X Package Managers, Fink does not use /usr/local/ path to install software. It simply means, Fink is for a bit advanced users who can handle the software conflicts (for difference in version).
Homebrew, to me is the best package manager...
answered Nov 28 '13 at 0:51
Dr. Abhishek Ghosh
6112
6112
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f80711%2fhow-to-install-apt-get-or-yum-on-mac-os-x%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
Why do you want to install them? What software do you want to install that you expect to find as .deb or .rpm files which will work on an OS X install?
– a CVn
Jun 26 '13 at 11:08
1
Both utilities are too Linux-specific (and/or too Fedora/Debian-specific) so they won't work on OSX without serious effort on your part,so Michael's question stands: what exactly is it you want to do?
– schaiba
Jun 26 '13 at 11:30
2
obviously OP is asking about the equivalent -- seriously...
– aequalsb
Feb 12 '17 at 17:31