Paleomix command won't work - python version in bash needs to be 2.7
I want to use the Paleomix toolset and while I have installed everything with pip into a new conda environment, but I needed to install pip first, which led to a version change in Python from 2 to 3. Paleomix requires version 2, so I am assuming this is one of the reasons the command won't work.
How do I change the Python version in my environment? I have tried aliases but they don't work.
bash python
New contributor
add a comment |
I want to use the Paleomix toolset and while I have installed everything with pip into a new conda environment, but I needed to install pip first, which led to a version change in Python from 2 to 3. Paleomix requires version 2, so I am assuming this is one of the reasons the command won't work.
How do I change the Python version in my environment? I have tried aliases but they don't work.
bash python
New contributor
2
Which Ubuntu are you on? It may be as simple as installing the python 2 packages.pip
won't upgrade you from Py2 to Py3.
– Thomas Ward♦
yesterday
I'm using the Terminal in my Mac, accessing the server at my school through a bash shell (version 4.3.48(1))
– new15b
yesterday
That doesn't answer my question. Is the server at school Ubuntu, or no? If it isn't then this is offtopic here on Ask Ubuntu. If it is, then you should probably NOT be trying topip
install things. You should be talking to the school IT staff who manage the server, sincepip
being Python3 means that Python 2 is not installed and needs to be manually installed from the package repositories.
– Thomas Ward♦
12 hours ago
They said it was ubuntu when we started the class, but did not say what version it was. This is what I did to solve the problem: I installed python 2 into my environment with conda: conda create --name paleo python=2.7 And after that I used pip to install paleomix and got it to run. pip install --user paleomix I made sure to do this first: echo "export PATH=$PATH:~/.local/bin" >> ~/.bash_profile after adding export PATH=$PATH:~/.local/bin to my .bash_profile. Now the paleomix command works
– new15b
4 hours ago
You might want to add that as an answer so others can benefit as well.
– Thomas Ward♦
2 hours ago
add a comment |
I want to use the Paleomix toolset and while I have installed everything with pip into a new conda environment, but I needed to install pip first, which led to a version change in Python from 2 to 3. Paleomix requires version 2, so I am assuming this is one of the reasons the command won't work.
How do I change the Python version in my environment? I have tried aliases but they don't work.
bash python
New contributor
I want to use the Paleomix toolset and while I have installed everything with pip into a new conda environment, but I needed to install pip first, which led to a version change in Python from 2 to 3. Paleomix requires version 2, so I am assuming this is one of the reasons the command won't work.
How do I change the Python version in my environment? I have tried aliases but they don't work.
bash python
bash python
New contributor
New contributor
New contributor
asked yesterday
new15bnew15b
1
1
New contributor
New contributor
2
Which Ubuntu are you on? It may be as simple as installing the python 2 packages.pip
won't upgrade you from Py2 to Py3.
– Thomas Ward♦
yesterday
I'm using the Terminal in my Mac, accessing the server at my school through a bash shell (version 4.3.48(1))
– new15b
yesterday
That doesn't answer my question. Is the server at school Ubuntu, or no? If it isn't then this is offtopic here on Ask Ubuntu. If it is, then you should probably NOT be trying topip
install things. You should be talking to the school IT staff who manage the server, sincepip
being Python3 means that Python 2 is not installed and needs to be manually installed from the package repositories.
– Thomas Ward♦
12 hours ago
They said it was ubuntu when we started the class, but did not say what version it was. This is what I did to solve the problem: I installed python 2 into my environment with conda: conda create --name paleo python=2.7 And after that I used pip to install paleomix and got it to run. pip install --user paleomix I made sure to do this first: echo "export PATH=$PATH:~/.local/bin" >> ~/.bash_profile after adding export PATH=$PATH:~/.local/bin to my .bash_profile. Now the paleomix command works
– new15b
4 hours ago
You might want to add that as an answer so others can benefit as well.
– Thomas Ward♦
2 hours ago
add a comment |
2
Which Ubuntu are you on? It may be as simple as installing the python 2 packages.pip
won't upgrade you from Py2 to Py3.
– Thomas Ward♦
yesterday
I'm using the Terminal in my Mac, accessing the server at my school through a bash shell (version 4.3.48(1))
– new15b
yesterday
That doesn't answer my question. Is the server at school Ubuntu, or no? If it isn't then this is offtopic here on Ask Ubuntu. If it is, then you should probably NOT be trying topip
install things. You should be talking to the school IT staff who manage the server, sincepip
being Python3 means that Python 2 is not installed and needs to be manually installed from the package repositories.
– Thomas Ward♦
12 hours ago
They said it was ubuntu when we started the class, but did not say what version it was. This is what I did to solve the problem: I installed python 2 into my environment with conda: conda create --name paleo python=2.7 And after that I used pip to install paleomix and got it to run. pip install --user paleomix I made sure to do this first: echo "export PATH=$PATH:~/.local/bin" >> ~/.bash_profile after adding export PATH=$PATH:~/.local/bin to my .bash_profile. Now the paleomix command works
– new15b
4 hours ago
You might want to add that as an answer so others can benefit as well.
– Thomas Ward♦
2 hours ago
2
2
Which Ubuntu are you on? It may be as simple as installing the python 2 packages.
pip
won't upgrade you from Py2 to Py3.– Thomas Ward♦
yesterday
Which Ubuntu are you on? It may be as simple as installing the python 2 packages.
pip
won't upgrade you from Py2 to Py3.– Thomas Ward♦
yesterday
I'm using the Terminal in my Mac, accessing the server at my school through a bash shell (version 4.3.48(1))
– new15b
yesterday
I'm using the Terminal in my Mac, accessing the server at my school through a bash shell (version 4.3.48(1))
– new15b
yesterday
That doesn't answer my question. Is the server at school Ubuntu, or no? If it isn't then this is offtopic here on Ask Ubuntu. If it is, then you should probably NOT be trying to
pip
install things. You should be talking to the school IT staff who manage the server, since pip
being Python3 means that Python 2 is not installed and needs to be manually installed from the package repositories.– Thomas Ward♦
12 hours ago
That doesn't answer my question. Is the server at school Ubuntu, or no? If it isn't then this is offtopic here on Ask Ubuntu. If it is, then you should probably NOT be trying to
pip
install things. You should be talking to the school IT staff who manage the server, since pip
being Python3 means that Python 2 is not installed and needs to be manually installed from the package repositories.– Thomas Ward♦
12 hours ago
They said it was ubuntu when we started the class, but did not say what version it was. This is what I did to solve the problem: I installed python 2 into my environment with conda: conda create --name paleo python=2.7 And after that I used pip to install paleomix and got it to run. pip install --user paleomix I made sure to do this first: echo "export PATH=$PATH:~/.local/bin" >> ~/.bash_profile after adding export PATH=$PATH:~/.local/bin to my .bash_profile. Now the paleomix command works
– new15b
4 hours ago
They said it was ubuntu when we started the class, but did not say what version it was. This is what I did to solve the problem: I installed python 2 into my environment with conda: conda create --name paleo python=2.7 And after that I used pip to install paleomix and got it to run. pip install --user paleomix I made sure to do this first: echo "export PATH=$PATH:~/.local/bin" >> ~/.bash_profile after adding export PATH=$PATH:~/.local/bin to my .bash_profile. Now the paleomix command works
– new15b
4 hours ago
You might want to add that as an answer so others can benefit as well.
– Thomas Ward♦
2 hours ago
You might want to add that as an answer so others can benefit as well.
– Thomas Ward♦
2 hours ago
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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
});
}
});
new15b is a new contributor. Be nice, and check out our Code of Conduct.
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%2faskubuntu.com%2fquestions%2f1123347%2fpaleomix-command-wont-work-python-version-in-bash-needs-to-be-2-7%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
new15b is a new contributor. Be nice, and check out our Code of Conduct.
new15b is a new contributor. Be nice, and check out our Code of Conduct.
new15b is a new contributor. Be nice, and check out our Code of Conduct.
new15b is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f1123347%2fpaleomix-command-wont-work-python-version-in-bash-needs-to-be-2-7%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
Which Ubuntu are you on? It may be as simple as installing the python 2 packages.
pip
won't upgrade you from Py2 to Py3.– Thomas Ward♦
yesterday
I'm using the Terminal in my Mac, accessing the server at my school through a bash shell (version 4.3.48(1))
– new15b
yesterday
That doesn't answer my question. Is the server at school Ubuntu, or no? If it isn't then this is offtopic here on Ask Ubuntu. If it is, then you should probably NOT be trying to
pip
install things. You should be talking to the school IT staff who manage the server, sincepip
being Python3 means that Python 2 is not installed and needs to be manually installed from the package repositories.– Thomas Ward♦
12 hours ago
They said it was ubuntu when we started the class, but did not say what version it was. This is what I did to solve the problem: I installed python 2 into my environment with conda: conda create --name paleo python=2.7 And after that I used pip to install paleomix and got it to run. pip install --user paleomix I made sure to do this first: echo "export PATH=$PATH:~/.local/bin" >> ~/.bash_profile after adding export PATH=$PATH:~/.local/bin to my .bash_profile. Now the paleomix command works
– new15b
4 hours ago
You might want to add that as an answer so others can benefit as well.
– Thomas Ward♦
2 hours ago