Anaconda python and Zsh issue on macOS Sierra
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I have Anaconda installed on my Macbook Pro with macOS Sierra with Zsh as a shell and Oh My Zsh.
GUI is working fine, but I have problem with commands in terminal.
When I want so start jupyter, I get an error zsh: command not found: jupyter
terminal osx zsh python
add a comment |
up vote
0
down vote
favorite
I have Anaconda installed on my Macbook Pro with macOS Sierra with Zsh as a shell and Oh My Zsh.
GUI is working fine, but I have problem with commands in terminal.
When I want so start jupyter, I get an error zsh: command not found: jupyter
terminal osx zsh python
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have Anaconda installed on my Macbook Pro with macOS Sierra with Zsh as a shell and Oh My Zsh.
GUI is working fine, but I have problem with commands in terminal.
When I want so start jupyter, I get an error zsh: command not found: jupyter
terminal osx zsh python
I have Anaconda installed on my Macbook Pro with macOS Sierra with Zsh as a shell and Oh My Zsh.
GUI is working fine, but I have problem with commands in terminal.
When I want so start jupyter, I get an error zsh: command not found: jupyter
terminal osx zsh python
terminal osx zsh python
asked Nov 3 '16 at 10:34
Petar Popovic
369
369
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
1
down vote
This was sort of a while ago now, but I figure all you need to do is add jupyter to your path. The path on my system is /opt/conda/bin/jupyter
, and if yours is the same you should be able to run the following:
echo "export PATH=/opt/conda/bin:$PATH" >> ~/.zshrc
And your PATH will be updated to include jupyter(and other conda-installed executeables). If your path to conda/bin is different you'll have to update the export accordingly.
add a comment |
up vote
-1
down vote
Just in case someone finds this useful, even thought it's not about Jupyter specifically:
I have installed Anaconda on Mojave using the GUI but since I am not using bash but zsh as my shell conda
hasn't been added to my ~/.zshrc
and I was getting this error when trying to run it:
zsh: command not found: conda
So I added
# Anaconda
export PATH=$HOME/anaconda3/bin/:$PATH
to my .zshrc
file, sourced (. ~/.zshrc
) and am good to go.
New contributor
This might be useful if it weren’t so similar (almost identical) to the existing answer.
– Scott
15 mins ago
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
This was sort of a while ago now, but I figure all you need to do is add jupyter to your path. The path on my system is /opt/conda/bin/jupyter
, and if yours is the same you should be able to run the following:
echo "export PATH=/opt/conda/bin:$PATH" >> ~/.zshrc
And your PATH will be updated to include jupyter(and other conda-installed executeables). If your path to conda/bin is different you'll have to update the export accordingly.
add a comment |
up vote
1
down vote
This was sort of a while ago now, but I figure all you need to do is add jupyter to your path. The path on my system is /opt/conda/bin/jupyter
, and if yours is the same you should be able to run the following:
echo "export PATH=/opt/conda/bin:$PATH" >> ~/.zshrc
And your PATH will be updated to include jupyter(and other conda-installed executeables). If your path to conda/bin is different you'll have to update the export accordingly.
add a comment |
up vote
1
down vote
up vote
1
down vote
This was sort of a while ago now, but I figure all you need to do is add jupyter to your path. The path on my system is /opt/conda/bin/jupyter
, and if yours is the same you should be able to run the following:
echo "export PATH=/opt/conda/bin:$PATH" >> ~/.zshrc
And your PATH will be updated to include jupyter(and other conda-installed executeables). If your path to conda/bin is different you'll have to update the export accordingly.
This was sort of a while ago now, but I figure all you need to do is add jupyter to your path. The path on my system is /opt/conda/bin/jupyter
, and if yours is the same you should be able to run the following:
echo "export PATH=/opt/conda/bin:$PATH" >> ~/.zshrc
And your PATH will be updated to include jupyter(and other conda-installed executeables). If your path to conda/bin is different you'll have to update the export accordingly.
answered Jun 15 '17 at 18:14
Patrick
111
111
add a comment |
add a comment |
up vote
-1
down vote
Just in case someone finds this useful, even thought it's not about Jupyter specifically:
I have installed Anaconda on Mojave using the GUI but since I am not using bash but zsh as my shell conda
hasn't been added to my ~/.zshrc
and I was getting this error when trying to run it:
zsh: command not found: conda
So I added
# Anaconda
export PATH=$HOME/anaconda3/bin/:$PATH
to my .zshrc
file, sourced (. ~/.zshrc
) and am good to go.
New contributor
This might be useful if it weren’t so similar (almost identical) to the existing answer.
– Scott
15 mins ago
add a comment |
up vote
-1
down vote
Just in case someone finds this useful, even thought it's not about Jupyter specifically:
I have installed Anaconda on Mojave using the GUI but since I am not using bash but zsh as my shell conda
hasn't been added to my ~/.zshrc
and I was getting this error when trying to run it:
zsh: command not found: conda
So I added
# Anaconda
export PATH=$HOME/anaconda3/bin/:$PATH
to my .zshrc
file, sourced (. ~/.zshrc
) and am good to go.
New contributor
This might be useful if it weren’t so similar (almost identical) to the existing answer.
– Scott
15 mins ago
add a comment |
up vote
-1
down vote
up vote
-1
down vote
Just in case someone finds this useful, even thought it's not about Jupyter specifically:
I have installed Anaconda on Mojave using the GUI but since I am not using bash but zsh as my shell conda
hasn't been added to my ~/.zshrc
and I was getting this error when trying to run it:
zsh: command not found: conda
So I added
# Anaconda
export PATH=$HOME/anaconda3/bin/:$PATH
to my .zshrc
file, sourced (. ~/.zshrc
) and am good to go.
New contributor
Just in case someone finds this useful, even thought it's not about Jupyter specifically:
I have installed Anaconda on Mojave using the GUI but since I am not using bash but zsh as my shell conda
hasn't been added to my ~/.zshrc
and I was getting this error when trying to run it:
zsh: command not found: conda
So I added
# Anaconda
export PATH=$HOME/anaconda3/bin/:$PATH
to my .zshrc
file, sourced (. ~/.zshrc
) and am good to go.
New contributor
New contributor
answered 2 hours ago
nana
992
992
New contributor
New contributor
This might be useful if it weren’t so similar (almost identical) to the existing answer.
– Scott
15 mins ago
add a comment |
This might be useful if it weren’t so similar (almost identical) to the existing answer.
– Scott
15 mins ago
This might be useful if it weren’t so similar (almost identical) to the existing answer.
– Scott
15 mins ago
This might be useful if it weren’t so similar (almost identical) to the existing answer.
– Scott
15 mins ago
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f320761%2fanaconda-python-and-zsh-issue-on-macos-sierra%23new-answer', 'question_page');
);
Post as a guest
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
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
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