When I start up my terminal in Mac . I see the below error?OSX: Installing Custom PHP BinariesTo set PATH on...
Patience, young "Padovan"
"My colleague's body is amazing"
Can the Produce Flame cantrip be used to grapple, or as an unarmed strike, in the right circumstances?
Is ipsum/ipsa/ipse a third person pronoun, or can it serve other functions?
Where to refill my bottle in India?
Is there a name of the flying bionic bird?
Manga about a female worker who got dragged into another world together with this high school girl and she was just told she's not needed anymore
I’m planning on buying a laser printer but concerned about the life cycle of toner in the machine
Doomsday-clock for my fantasy planet
What is the offset in a seaplane's hull?
Copycat chess is back
Why doesn't a const reference extend the life of a temporary object passed via a function?
Is window.confirm() accessible?
Is this food a bread or a loaf?
How to move the player while also allowing forces to affect it
How is it possible for user's password to be changed after storage was encrypted? (on OS X, Android)
Calculate Levenshtein distance between two strings in Python
Shall I use personal or official e-mail account when registering to external websites for work purpose?
Is Social Media Science Fiction?
Filling an area between two curves
Landlord wants to switch my lease to a "Land contract" to "get back at the city"
What do you call something that goes against the spirit of the law, but is legal when interpreting the law to the letter?
Does a dangling wire really electrocute me if I'm standing in water?
What does 'script /dev/null' do?
When I start up my terminal in Mac . I see the below error?
OSX: Installing Custom PHP BinariesTo set PATH on OS X when export PATH= don't workMac Terminal -bash warnings on startHow to fix Homebrew error “/usr/bin occurs before /usr/local/bin”ioctl LOOP_SET_FD failed: Device or resource busyError in Terminal when I open itWhy is Upstart not starting uWSGI?Linux: create a “public” SSH account that executes a specific binary and then closes?How to delete old $PATH echo in MacGetting the following error when using ls in Mac terminal: -bash: ls: command not found
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
-bash: /usr/local/bin/python3: No such file or directory
virtualenvwrapper.sh: There was a problem running the initialization hooks.
If Python could not import the module virtualenvwrapper.hook_loader,
check that virtualenvwrapper has been installed for
VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/python3 and that PATH is
set properly.
.bash_profile
> # added by Anaconda3 2018.12 installer
# >>> conda init >>>
# !! Contents within this block are managed by 'conda init' !!/Users/apple
__conda_setup="$(CONDA_REPORT_ERRORS=false '/Users/apple/anaconda3/bin/conda' shell.bash hook 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/Users/apple/anaconda3/etc/profile.d/conda.sh" ]; then
. "/Users/apple/anaconda3/etc/profile.d/conda.sh"
CONDA_CHANGEPS1=false conda activate base
else
export PATH="/Users/apple/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda init <<<
# Homebrew
# virtualenv and virtualenvwrapper
export PATH=/usr/local/bin:$PATH
export VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/python3
export WORKON_HOME=$HOME/.virtualenvs
source /usr/local/bin/virtualenvwrapper.sh
linux bash python homebrew virtualenv
New contributor
add a comment |
-bash: /usr/local/bin/python3: No such file or directory
virtualenvwrapper.sh: There was a problem running the initialization hooks.
If Python could not import the module virtualenvwrapper.hook_loader,
check that virtualenvwrapper has been installed for
VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/python3 and that PATH is
set properly.
.bash_profile
> # added by Anaconda3 2018.12 installer
# >>> conda init >>>
# !! Contents within this block are managed by 'conda init' !!/Users/apple
__conda_setup="$(CONDA_REPORT_ERRORS=false '/Users/apple/anaconda3/bin/conda' shell.bash hook 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/Users/apple/anaconda3/etc/profile.d/conda.sh" ]; then
. "/Users/apple/anaconda3/etc/profile.d/conda.sh"
CONDA_CHANGEPS1=false conda activate base
else
export PATH="/Users/apple/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda init <<<
# Homebrew
# virtualenv and virtualenvwrapper
export PATH=/usr/local/bin:$PATH
export VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/python3
export WORKON_HOME=$HOME/.virtualenvs
source /usr/local/bin/virtualenvwrapper.sh
linux bash python homebrew virtualenv
New contributor
Did you check what the error indicates? Does/usr/local/bin/python3
exist on your system?
– Nasir Riley
2 days ago
Yes it exist . I opened finder using cmd+shift+G and typed the path till bin folder and found a file named python3 and its type is (Alias)
– Shashank Lal
2 days ago
Is it an alias or a symlink? An alias doesn't exist in an actual directory. It's effectively just a substitution for another file. If it's actually an alias then you're going to have to replace it because aliases aren't expanded in non-interactive scripts.
– Nasir Riley
2 days ago
@ShashankLal I presume that's the Finder info window that reports it's an "alias"? If so, it's probably actually a symbolic link. What does it list as the "Original", and does that exist?
– Gordon Davisson
2 days ago
add a comment |
-bash: /usr/local/bin/python3: No such file or directory
virtualenvwrapper.sh: There was a problem running the initialization hooks.
If Python could not import the module virtualenvwrapper.hook_loader,
check that virtualenvwrapper has been installed for
VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/python3 and that PATH is
set properly.
.bash_profile
> # added by Anaconda3 2018.12 installer
# >>> conda init >>>
# !! Contents within this block are managed by 'conda init' !!/Users/apple
__conda_setup="$(CONDA_REPORT_ERRORS=false '/Users/apple/anaconda3/bin/conda' shell.bash hook 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/Users/apple/anaconda3/etc/profile.d/conda.sh" ]; then
. "/Users/apple/anaconda3/etc/profile.d/conda.sh"
CONDA_CHANGEPS1=false conda activate base
else
export PATH="/Users/apple/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda init <<<
# Homebrew
# virtualenv and virtualenvwrapper
export PATH=/usr/local/bin:$PATH
export VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/python3
export WORKON_HOME=$HOME/.virtualenvs
source /usr/local/bin/virtualenvwrapper.sh
linux bash python homebrew virtualenv
New contributor
-bash: /usr/local/bin/python3: No such file or directory
virtualenvwrapper.sh: There was a problem running the initialization hooks.
If Python could not import the module virtualenvwrapper.hook_loader,
check that virtualenvwrapper has been installed for
VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/python3 and that PATH is
set properly.
.bash_profile
> # added by Anaconda3 2018.12 installer
# >>> conda init >>>
# !! Contents within this block are managed by 'conda init' !!/Users/apple
__conda_setup="$(CONDA_REPORT_ERRORS=false '/Users/apple/anaconda3/bin/conda' shell.bash hook 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/Users/apple/anaconda3/etc/profile.d/conda.sh" ]; then
. "/Users/apple/anaconda3/etc/profile.d/conda.sh"
CONDA_CHANGEPS1=false conda activate base
else
export PATH="/Users/apple/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda init <<<
# Homebrew
# virtualenv and virtualenvwrapper
export PATH=/usr/local/bin:$PATH
export VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/python3
export WORKON_HOME=$HOME/.virtualenvs
source /usr/local/bin/virtualenvwrapper.sh
linux bash python homebrew virtualenv
linux bash python homebrew virtualenv
New contributor
New contributor
edited 2 days ago
bwDraco
37.1k37138178
37.1k37138178
New contributor
asked 2 days ago
Shashank LalShashank Lal
1
1
New contributor
New contributor
Did you check what the error indicates? Does/usr/local/bin/python3
exist on your system?
– Nasir Riley
2 days ago
Yes it exist . I opened finder using cmd+shift+G and typed the path till bin folder and found a file named python3 and its type is (Alias)
– Shashank Lal
2 days ago
Is it an alias or a symlink? An alias doesn't exist in an actual directory. It's effectively just a substitution for another file. If it's actually an alias then you're going to have to replace it because aliases aren't expanded in non-interactive scripts.
– Nasir Riley
2 days ago
@ShashankLal I presume that's the Finder info window that reports it's an "alias"? If so, it's probably actually a symbolic link. What does it list as the "Original", and does that exist?
– Gordon Davisson
2 days ago
add a comment |
Did you check what the error indicates? Does/usr/local/bin/python3
exist on your system?
– Nasir Riley
2 days ago
Yes it exist . I opened finder using cmd+shift+G and typed the path till bin folder and found a file named python3 and its type is (Alias)
– Shashank Lal
2 days ago
Is it an alias or a symlink? An alias doesn't exist in an actual directory. It's effectively just a substitution for another file. If it's actually an alias then you're going to have to replace it because aliases aren't expanded in non-interactive scripts.
– Nasir Riley
2 days ago
@ShashankLal I presume that's the Finder info window that reports it's an "alias"? If so, it's probably actually a symbolic link. What does it list as the "Original", and does that exist?
– Gordon Davisson
2 days ago
Did you check what the error indicates? Does
/usr/local/bin/python3
exist on your system?– Nasir Riley
2 days ago
Did you check what the error indicates? Does
/usr/local/bin/python3
exist on your system?– Nasir Riley
2 days ago
Yes it exist . I opened finder using cmd+shift+G and typed the path till bin folder and found a file named python3 and its type is (Alias)
– Shashank Lal
2 days ago
Yes it exist . I opened finder using cmd+shift+G and typed the path till bin folder and found a file named python3 and its type is (Alias)
– Shashank Lal
2 days ago
Is it an alias or a symlink? An alias doesn't exist in an actual directory. It's effectively just a substitution for another file. If it's actually an alias then you're going to have to replace it because aliases aren't expanded in non-interactive scripts.
– Nasir Riley
2 days ago
Is it an alias or a symlink? An alias doesn't exist in an actual directory. It's effectively just a substitution for another file. If it's actually an alias then you're going to have to replace it because aliases aren't expanded in non-interactive scripts.
– Nasir Riley
2 days ago
@ShashankLal I presume that's the Finder info window that reports it's an "alias"? If so, it's probably actually a symbolic link. What does it list as the "Original", and does that exist?
– Gordon Davisson
2 days ago
@ShashankLal I presume that's the Finder info window that reports it's an "alias"? If so, it's probably actually a symbolic link. What does it list as the "Original", and does that exist?
– Gordon Davisson
2 days ago
add a comment |
0
active
oldest
votes
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
});
}
});
Shashank Lal 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%2fsuperuser.com%2fquestions%2f1422214%2fwhen-i-start-up-my-terminal-in-mac-i-see-the-below-error%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
Shashank Lal is a new contributor. Be nice, and check out our Code of Conduct.
Shashank Lal is a new contributor. Be nice, and check out our Code of Conduct.
Shashank Lal is a new contributor. Be nice, and check out our Code of Conduct.
Shashank Lal is a new contributor. Be nice, and check out our Code of Conduct.
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%2f1422214%2fwhen-i-start-up-my-terminal-in-mac-i-see-the-below-error%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
Did you check what the error indicates? Does
/usr/local/bin/python3
exist on your system?– Nasir Riley
2 days ago
Yes it exist . I opened finder using cmd+shift+G and typed the path till bin folder and found a file named python3 and its type is (Alias)
– Shashank Lal
2 days ago
Is it an alias or a symlink? An alias doesn't exist in an actual directory. It's effectively just a substitution for another file. If it's actually an alias then you're going to have to replace it because aliases aren't expanded in non-interactive scripts.
– Nasir Riley
2 days ago
@ShashankLal I presume that's the Finder info window that reports it's an "alias"? If so, it's probably actually a symbolic link. What does it list as the "Original", and does that exist?
– Gordon Davisson
2 days ago