How can I install GNU Parallel alongside Moreutils?
Homebrew has a formula for moreutils and GNU parallel.
GNU Parallel conflicts with Moreutils since it also has a binary called parallel, which is just less useful. However I'd still like to install both formulae at the same time. How can I do that?
Ideally, I'd install GNU Parallel as gparallel – akin to the naming of the Coreutils binaries – to avoid these conflicts, but I don't see a way to specify that in the formula itself, since prefix is just the Homebrew prefix.
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
Any way to get the best of both worlds?
macos homebrew gnu-parallel
add a comment |
Homebrew has a formula for moreutils and GNU parallel.
GNU Parallel conflicts with Moreutils since it also has a binary called parallel, which is just less useful. However I'd still like to install both formulae at the same time. How can I do that?
Ideally, I'd install GNU Parallel as gparallel – akin to the naming of the Coreutils binaries – to avoid these conflicts, but I don't see a way to specify that in the formula itself, since prefix is just the Homebrew prefix.
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
Any way to get the best of both worlds?
macos homebrew gnu-parallel
Are you aware that certain features of GNU Parallel depends on the program being calledparallel?
– Ole Tange
Feb 3 '13 at 19:17
No, I wasn't. Could you explain what these are? (Also, why is there a configuration option that lets you change this so easily?)
– slhck
Feb 3 '13 at 19:21
add a comment |
Homebrew has a formula for moreutils and GNU parallel.
GNU Parallel conflicts with Moreutils since it also has a binary called parallel, which is just less useful. However I'd still like to install both formulae at the same time. How can I do that?
Ideally, I'd install GNU Parallel as gparallel – akin to the naming of the Coreutils binaries – to avoid these conflicts, but I don't see a way to specify that in the formula itself, since prefix is just the Homebrew prefix.
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
Any way to get the best of both worlds?
macos homebrew gnu-parallel
Homebrew has a formula for moreutils and GNU parallel.
GNU Parallel conflicts with Moreutils since it also has a binary called parallel, which is just less useful. However I'd still like to install both formulae at the same time. How can I do that?
Ideally, I'd install GNU Parallel as gparallel – akin to the naming of the Coreutils binaries – to avoid these conflicts, but I don't see a way to specify that in the formula itself, since prefix is just the Homebrew prefix.
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
Any way to get the best of both worlds?
macos homebrew gnu-parallel
macos homebrew gnu-parallel
edited Feb 3 '13 at 12:38
slhck
asked Feb 3 '13 at 10:29
slhckslhck
162k47448470
162k47448470
Are you aware that certain features of GNU Parallel depends on the program being calledparallel?
– Ole Tange
Feb 3 '13 at 19:17
No, I wasn't. Could you explain what these are? (Also, why is there a configuration option that lets you change this so easily?)
– slhck
Feb 3 '13 at 19:21
add a comment |
Are you aware that certain features of GNU Parallel depends on the program being calledparallel?
– Ole Tange
Feb 3 '13 at 19:17
No, I wasn't. Could you explain what these are? (Also, why is there a configuration option that lets you change this so easily?)
– slhck
Feb 3 '13 at 19:21
Are you aware that certain features of GNU Parallel depends on the program being called
parallel?– Ole Tange
Feb 3 '13 at 19:17
Are you aware that certain features of GNU Parallel depends on the program being called
parallel?– Ole Tange
Feb 3 '13 at 19:17
No, I wasn't. Could you explain what these are? (Also, why is there a configuration option that lets you change this so easily?)
– slhck
Feb 3 '13 at 19:21
No, I wasn't. Could you explain what these are? (Also, why is there a configuration option that lets you change this so easily?)
– slhck
Feb 3 '13 at 19:21
add a comment |
1 Answer
1
active
oldest
votes
You have to install a third-party version of the formula:
brew install slhck/moreutils/moreutils --without-parallel
Then:
brew install parallel
4
brew still complainedError: Cannot install parallel because conflicting formulae are installed. The second command should bebrew install parallel --force.
– Frozen Flame
Sep 17 '15 at 3:52
This no longer works in OSX High Sierra, see here
– user105053
Jan 28 '18 at 2:38
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2fsuperuser.com%2fquestions%2f545889%2fhow-can-i-install-gnu-parallel-alongside-moreutils%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You have to install a third-party version of the formula:
brew install slhck/moreutils/moreutils --without-parallel
Then:
brew install parallel
4
brew still complainedError: Cannot install parallel because conflicting formulae are installed. The second command should bebrew install parallel --force.
– Frozen Flame
Sep 17 '15 at 3:52
This no longer works in OSX High Sierra, see here
– user105053
Jan 28 '18 at 2:38
add a comment |
You have to install a third-party version of the formula:
brew install slhck/moreutils/moreutils --without-parallel
Then:
brew install parallel
4
brew still complainedError: Cannot install parallel because conflicting formulae are installed. The second command should bebrew install parallel --force.
– Frozen Flame
Sep 17 '15 at 3:52
This no longer works in OSX High Sierra, see here
– user105053
Jan 28 '18 at 2:38
add a comment |
You have to install a third-party version of the formula:
brew install slhck/moreutils/moreutils --without-parallel
Then:
brew install parallel
You have to install a third-party version of the formula:
brew install slhck/moreutils/moreutils --without-parallel
Then:
brew install parallel
edited Feb 5 at 15:48
slhck
162k47448470
162k47448470
answered Nov 21 '14 at 4:17
dpatrudpatru
21635
21635
4
brew still complainedError: Cannot install parallel because conflicting formulae are installed. The second command should bebrew install parallel --force.
– Frozen Flame
Sep 17 '15 at 3:52
This no longer works in OSX High Sierra, see here
– user105053
Jan 28 '18 at 2:38
add a comment |
4
brew still complainedError: Cannot install parallel because conflicting formulae are installed. The second command should bebrew install parallel --force.
– Frozen Flame
Sep 17 '15 at 3:52
This no longer works in OSX High Sierra, see here
– user105053
Jan 28 '18 at 2:38
4
4
brew still complained
Error: Cannot install parallel because conflicting formulae are installed. The second command should be brew install parallel --force.– Frozen Flame
Sep 17 '15 at 3:52
brew still complained
Error: Cannot install parallel because conflicting formulae are installed. The second command should be brew install parallel --force.– Frozen Flame
Sep 17 '15 at 3:52
This no longer works in OSX High Sierra, see here
– user105053
Jan 28 '18 at 2:38
This no longer works in OSX High Sierra, see here
– user105053
Jan 28 '18 at 2:38
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2fsuperuser.com%2fquestions%2f545889%2fhow-can-i-install-gnu-parallel-alongside-moreutils%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
Are you aware that certain features of GNU Parallel depends on the program being called
parallel?– Ole Tange
Feb 3 '13 at 19:17
No, I wasn't. Could you explain what these are? (Also, why is there a configuration option that lets you change this so easily?)
– slhck
Feb 3 '13 at 19:21