brew install python3 didn't install pip3
up vote
12
down vote
favorite
I installed python3 using homebrew but it didn't install pip3 or should I say it installed but it doesn't recognize the command ?
Here is what I did:
brew install python3
This installed python3 but threw an error at the end saying it couldn't link python3 and prompted me to run
brew link python3
to link the installation but this throws another error:
Linking /usr/local/Cellar/python3/3.6.3... Error: Permission denied @ dir_s_mkdir - /usr/local/lib
Does anyone know how solve this ?
When I run:
brew info python3
It says:
==> Caveats
Pip, setuptools, and wheel have been installed. To update them
pip3 install --upgrade pip setuptools wheel
You can install Python packages with
pip3 install <package>
They will install into the site-package directory
/usr/local/lib/python3.6/site-packages
See: https://docs.brew.sh/Homebrew-and-Python.html
Which makes me think pip3 is installed but not recognized. Any help is appreciated.
INFO:
OS => MacOS High Sierra 10.13.1
pip3 install twilio
-bash: pip3: command not found
python macos python-3.x pip homebrew
add a comment |
up vote
12
down vote
favorite
I installed python3 using homebrew but it didn't install pip3 or should I say it installed but it doesn't recognize the command ?
Here is what I did:
brew install python3
This installed python3 but threw an error at the end saying it couldn't link python3 and prompted me to run
brew link python3
to link the installation but this throws another error:
Linking /usr/local/Cellar/python3/3.6.3... Error: Permission denied @ dir_s_mkdir - /usr/local/lib
Does anyone know how solve this ?
When I run:
brew info python3
It says:
==> Caveats
Pip, setuptools, and wheel have been installed. To update them
pip3 install --upgrade pip setuptools wheel
You can install Python packages with
pip3 install <package>
They will install into the site-package directory
/usr/local/lib/python3.6/site-packages
See: https://docs.brew.sh/Homebrew-and-Python.html
Which makes me think pip3 is installed but not recognized. Any help is appreciated.
INFO:
OS => MacOS High Sierra 10.13.1
pip3 install twilio
-bash: pip3: command not found
python macos python-3.x pip homebrew
My gut says you wouldn't requirepip3
aspip
picks up your currently active version of python depending on your environment.
– nehemiah
Nov 13 '17 at 0:24
Mypip3
is here/usr/local/bin/pip3
– nehemiah
Nov 13 '17 at 0:25
add a comment |
up vote
12
down vote
favorite
up vote
12
down vote
favorite
I installed python3 using homebrew but it didn't install pip3 or should I say it installed but it doesn't recognize the command ?
Here is what I did:
brew install python3
This installed python3 but threw an error at the end saying it couldn't link python3 and prompted me to run
brew link python3
to link the installation but this throws another error:
Linking /usr/local/Cellar/python3/3.6.3... Error: Permission denied @ dir_s_mkdir - /usr/local/lib
Does anyone know how solve this ?
When I run:
brew info python3
It says:
==> Caveats
Pip, setuptools, and wheel have been installed. To update them
pip3 install --upgrade pip setuptools wheel
You can install Python packages with
pip3 install <package>
They will install into the site-package directory
/usr/local/lib/python3.6/site-packages
See: https://docs.brew.sh/Homebrew-and-Python.html
Which makes me think pip3 is installed but not recognized. Any help is appreciated.
INFO:
OS => MacOS High Sierra 10.13.1
pip3 install twilio
-bash: pip3: command not found
python macos python-3.x pip homebrew
I installed python3 using homebrew but it didn't install pip3 or should I say it installed but it doesn't recognize the command ?
Here is what I did:
brew install python3
This installed python3 but threw an error at the end saying it couldn't link python3 and prompted me to run
brew link python3
to link the installation but this throws another error:
Linking /usr/local/Cellar/python3/3.6.3... Error: Permission denied @ dir_s_mkdir - /usr/local/lib
Does anyone know how solve this ?
When I run:
brew info python3
It says:
==> Caveats
Pip, setuptools, and wheel have been installed. To update them
pip3 install --upgrade pip setuptools wheel
You can install Python packages with
pip3 install <package>
They will install into the site-package directory
/usr/local/lib/python3.6/site-packages
See: https://docs.brew.sh/Homebrew-and-Python.html
Which makes me think pip3 is installed but not recognized. Any help is appreciated.
INFO:
OS => MacOS High Sierra 10.13.1
pip3 install twilio
-bash: pip3: command not found
python macos python-3.x pip homebrew
python macos python-3.x pip homebrew
asked Nov 13 '17 at 0:22
Alexander Luna
2,26621430
2,26621430
My gut says you wouldn't requirepip3
aspip
picks up your currently active version of python depending on your environment.
– nehemiah
Nov 13 '17 at 0:24
Mypip3
is here/usr/local/bin/pip3
– nehemiah
Nov 13 '17 at 0:25
add a comment |
My gut says you wouldn't requirepip3
aspip
picks up your currently active version of python depending on your environment.
– nehemiah
Nov 13 '17 at 0:24
Mypip3
is here/usr/local/bin/pip3
– nehemiah
Nov 13 '17 at 0:25
My gut says you wouldn't require
pip3
as pip
picks up your currently active version of python depending on your environment.– nehemiah
Nov 13 '17 at 0:24
My gut says you wouldn't require
pip3
as pip
picks up your currently active version of python depending on your environment.– nehemiah
Nov 13 '17 at 0:24
My
pip3
is here /usr/local/bin/pip3
– nehemiah
Nov 13 '17 at 0:25
My
pip3
is here /usr/local/bin/pip3
– nehemiah
Nov 13 '17 at 0:25
add a comment |
4 Answers
4
active
oldest
votes
up vote
26
down vote
accepted
Ok it took me a lot of googling but the problem is that in high sierra all permissions inside usr/local changed and homebrew has to create some folder inside usr/local. Here is how I solved everything:
I tried using
sudo brew install python3
but that also threw an error
directly from Homebrew telling me that it doesn't allow the use of
sudo brew
.
Create the folders I needed using sudo mkdir inside /usr/local:
sudo mkdir lib
sudo mkdir Frameworks
Change the permissions inside /usr/local so that homebrew can access them:
sudo chown -R $(whoami) $(brew --prefix)/*
Now install python3
brew install python3
This will give you a successful installation:
==> Pouring python3-3.6.3.high_sierra.bottle.tar.gz
==> /usr/local/Cellar/python3/3.6.3/bin/python3 -s setup.py --no-user-cfg install --force --verbose --install-scripts=/usr/local/Cellar/python3/3.6.3/bin --in
==> /usr/local/Cellar/python3/3.6.3/bin/python3 -s setup.py --no-user-cfg install --force --verbose --install-scripts=/usr/local/Cellar/python3/3.6.3/bin --in
==> /usr/local/Cellar/python3/3.6.3/bin/python3 -s setup.py --no-user-cfg install --force --verbose --install-scripts=/usr/local/Cellar/python3/3.6.3/bin --in
==> Caveats
Pip, setuptools, and wheel have been installed. To update them
pip3 install --upgrade pip setuptools wheel
You can install Python packages with
pip3 install <package>
They will install into the site-package directory
/usr/local/lib/python3.6/site-packages
See: https://docs.brew.sh/Homebrew-and-Python.html
==> Summary
🍺 /usr/local/Cellar/python3/3.6.3: 3,588 files, 56.1MB
"in high sierra all permissions inside usr/local changed" Do you have a source on that? I haven’t got any issue upgrading to High Sierra.
– bfontaine
Nov 14 '17 at 10:13
2
I read this on github: github.com/Homebrew/brew/issues/3228 And when I listed the usr/local directory, most of the folders needed "root" access. After creating all the folder which brew can't create because I can't run "sudo brew" I changed permission to from "root" to "me" and brew works now fine.
– Alexander Luna
Nov 14 '17 at 13:59
1
An update - I have created one more folder on my machine, local/opt. Then executed the permission commands. It is perfectly working (python3+pip3) now. Thanks for the Q&A.
– Nithin CV
Jan 2 at 15:09
I'm glad it worked for you.
– Alexander Luna
Jan 2 at 17:23
awesome, you saved my day!
– Andy
Jan 28 at 21:07
|
show 1 more comment
up vote
2
down vote
After resolving the linking issue (e.g. https://github.com/Homebrew/homebrew-core/issues/19286 ), python3 is installed but not pip3. Reinstalling python (e.g. brew reinstall python) eventually installs pip3 as well. These steps works well for me.
add a comment |
up vote
1
down vote
I had the same issue and used:
sudo -H pip3 install virtualenv
sudo -H pip3 install virtualenvwrapper --ignore-installed six
nice answer! welcome to stack overflow buddy.
– Rann Lifshitz
Apr 19 at 0:40
add a comment |
up vote
0
down vote
GitHub user @aether2501, commenting on a sudo chown solution for a "Homebrew Permission Denied" problem, suggests instead that Homebrew be uninstalled/reinstalled after the upgrade to High Sierra.
I successfully used @aether2501's reinstall command, /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
, on High Sierra (10.13.2) without uninstalling brew first.
In addition to creating the /usr/local/Frameworks directory and setting the necessary ownership and permissions I needed to link python3, it also appears to have fixed other directory issues.
add a comment |
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
26
down vote
accepted
Ok it took me a lot of googling but the problem is that in high sierra all permissions inside usr/local changed and homebrew has to create some folder inside usr/local. Here is how I solved everything:
I tried using
sudo brew install python3
but that also threw an error
directly from Homebrew telling me that it doesn't allow the use of
sudo brew
.
Create the folders I needed using sudo mkdir inside /usr/local:
sudo mkdir lib
sudo mkdir Frameworks
Change the permissions inside /usr/local so that homebrew can access them:
sudo chown -R $(whoami) $(brew --prefix)/*
Now install python3
brew install python3
This will give you a successful installation:
==> Pouring python3-3.6.3.high_sierra.bottle.tar.gz
==> /usr/local/Cellar/python3/3.6.3/bin/python3 -s setup.py --no-user-cfg install --force --verbose --install-scripts=/usr/local/Cellar/python3/3.6.3/bin --in
==> /usr/local/Cellar/python3/3.6.3/bin/python3 -s setup.py --no-user-cfg install --force --verbose --install-scripts=/usr/local/Cellar/python3/3.6.3/bin --in
==> /usr/local/Cellar/python3/3.6.3/bin/python3 -s setup.py --no-user-cfg install --force --verbose --install-scripts=/usr/local/Cellar/python3/3.6.3/bin --in
==> Caveats
Pip, setuptools, and wheel have been installed. To update them
pip3 install --upgrade pip setuptools wheel
You can install Python packages with
pip3 install <package>
They will install into the site-package directory
/usr/local/lib/python3.6/site-packages
See: https://docs.brew.sh/Homebrew-and-Python.html
==> Summary
🍺 /usr/local/Cellar/python3/3.6.3: 3,588 files, 56.1MB
"in high sierra all permissions inside usr/local changed" Do you have a source on that? I haven’t got any issue upgrading to High Sierra.
– bfontaine
Nov 14 '17 at 10:13
2
I read this on github: github.com/Homebrew/brew/issues/3228 And when I listed the usr/local directory, most of the folders needed "root" access. After creating all the folder which brew can't create because I can't run "sudo brew" I changed permission to from "root" to "me" and brew works now fine.
– Alexander Luna
Nov 14 '17 at 13:59
1
An update - I have created one more folder on my machine, local/opt. Then executed the permission commands. It is perfectly working (python3+pip3) now. Thanks for the Q&A.
– Nithin CV
Jan 2 at 15:09
I'm glad it worked for you.
– Alexander Luna
Jan 2 at 17:23
awesome, you saved my day!
– Andy
Jan 28 at 21:07
|
show 1 more comment
up vote
26
down vote
accepted
Ok it took me a lot of googling but the problem is that in high sierra all permissions inside usr/local changed and homebrew has to create some folder inside usr/local. Here is how I solved everything:
I tried using
sudo brew install python3
but that also threw an error
directly from Homebrew telling me that it doesn't allow the use of
sudo brew
.
Create the folders I needed using sudo mkdir inside /usr/local:
sudo mkdir lib
sudo mkdir Frameworks
Change the permissions inside /usr/local so that homebrew can access them:
sudo chown -R $(whoami) $(brew --prefix)/*
Now install python3
brew install python3
This will give you a successful installation:
==> Pouring python3-3.6.3.high_sierra.bottle.tar.gz
==> /usr/local/Cellar/python3/3.6.3/bin/python3 -s setup.py --no-user-cfg install --force --verbose --install-scripts=/usr/local/Cellar/python3/3.6.3/bin --in
==> /usr/local/Cellar/python3/3.6.3/bin/python3 -s setup.py --no-user-cfg install --force --verbose --install-scripts=/usr/local/Cellar/python3/3.6.3/bin --in
==> /usr/local/Cellar/python3/3.6.3/bin/python3 -s setup.py --no-user-cfg install --force --verbose --install-scripts=/usr/local/Cellar/python3/3.6.3/bin --in
==> Caveats
Pip, setuptools, and wheel have been installed. To update them
pip3 install --upgrade pip setuptools wheel
You can install Python packages with
pip3 install <package>
They will install into the site-package directory
/usr/local/lib/python3.6/site-packages
See: https://docs.brew.sh/Homebrew-and-Python.html
==> Summary
🍺 /usr/local/Cellar/python3/3.6.3: 3,588 files, 56.1MB
"in high sierra all permissions inside usr/local changed" Do you have a source on that? I haven’t got any issue upgrading to High Sierra.
– bfontaine
Nov 14 '17 at 10:13
2
I read this on github: github.com/Homebrew/brew/issues/3228 And when I listed the usr/local directory, most of the folders needed "root" access. After creating all the folder which brew can't create because I can't run "sudo brew" I changed permission to from "root" to "me" and brew works now fine.
– Alexander Luna
Nov 14 '17 at 13:59
1
An update - I have created one more folder on my machine, local/opt. Then executed the permission commands. It is perfectly working (python3+pip3) now. Thanks for the Q&A.
– Nithin CV
Jan 2 at 15:09
I'm glad it worked for you.
– Alexander Luna
Jan 2 at 17:23
awesome, you saved my day!
– Andy
Jan 28 at 21:07
|
show 1 more comment
up vote
26
down vote
accepted
up vote
26
down vote
accepted
Ok it took me a lot of googling but the problem is that in high sierra all permissions inside usr/local changed and homebrew has to create some folder inside usr/local. Here is how I solved everything:
I tried using
sudo brew install python3
but that also threw an error
directly from Homebrew telling me that it doesn't allow the use of
sudo brew
.
Create the folders I needed using sudo mkdir inside /usr/local:
sudo mkdir lib
sudo mkdir Frameworks
Change the permissions inside /usr/local so that homebrew can access them:
sudo chown -R $(whoami) $(brew --prefix)/*
Now install python3
brew install python3
This will give you a successful installation:
==> Pouring python3-3.6.3.high_sierra.bottle.tar.gz
==> /usr/local/Cellar/python3/3.6.3/bin/python3 -s setup.py --no-user-cfg install --force --verbose --install-scripts=/usr/local/Cellar/python3/3.6.3/bin --in
==> /usr/local/Cellar/python3/3.6.3/bin/python3 -s setup.py --no-user-cfg install --force --verbose --install-scripts=/usr/local/Cellar/python3/3.6.3/bin --in
==> /usr/local/Cellar/python3/3.6.3/bin/python3 -s setup.py --no-user-cfg install --force --verbose --install-scripts=/usr/local/Cellar/python3/3.6.3/bin --in
==> Caveats
Pip, setuptools, and wheel have been installed. To update them
pip3 install --upgrade pip setuptools wheel
You can install Python packages with
pip3 install <package>
They will install into the site-package directory
/usr/local/lib/python3.6/site-packages
See: https://docs.brew.sh/Homebrew-and-Python.html
==> Summary
🍺 /usr/local/Cellar/python3/3.6.3: 3,588 files, 56.1MB
Ok it took me a lot of googling but the problem is that in high sierra all permissions inside usr/local changed and homebrew has to create some folder inside usr/local. Here is how I solved everything:
I tried using
sudo brew install python3
but that also threw an error
directly from Homebrew telling me that it doesn't allow the use of
sudo brew
.
Create the folders I needed using sudo mkdir inside /usr/local:
sudo mkdir lib
sudo mkdir Frameworks
Change the permissions inside /usr/local so that homebrew can access them:
sudo chown -R $(whoami) $(brew --prefix)/*
Now install python3
brew install python3
This will give you a successful installation:
==> Pouring python3-3.6.3.high_sierra.bottle.tar.gz
==> /usr/local/Cellar/python3/3.6.3/bin/python3 -s setup.py --no-user-cfg install --force --verbose --install-scripts=/usr/local/Cellar/python3/3.6.3/bin --in
==> /usr/local/Cellar/python3/3.6.3/bin/python3 -s setup.py --no-user-cfg install --force --verbose --install-scripts=/usr/local/Cellar/python3/3.6.3/bin --in
==> /usr/local/Cellar/python3/3.6.3/bin/python3 -s setup.py --no-user-cfg install --force --verbose --install-scripts=/usr/local/Cellar/python3/3.6.3/bin --in
==> Caveats
Pip, setuptools, and wheel have been installed. To update them
pip3 install --upgrade pip setuptools wheel
You can install Python packages with
pip3 install <package>
They will install into the site-package directory
/usr/local/lib/python3.6/site-packages
See: https://docs.brew.sh/Homebrew-and-Python.html
==> Summary
🍺 /usr/local/Cellar/python3/3.6.3: 3,588 files, 56.1MB
answered Nov 13 '17 at 2:28
Alexander Luna
2,26621430
2,26621430
"in high sierra all permissions inside usr/local changed" Do you have a source on that? I haven’t got any issue upgrading to High Sierra.
– bfontaine
Nov 14 '17 at 10:13
2
I read this on github: github.com/Homebrew/brew/issues/3228 And when I listed the usr/local directory, most of the folders needed "root" access. After creating all the folder which brew can't create because I can't run "sudo brew" I changed permission to from "root" to "me" and brew works now fine.
– Alexander Luna
Nov 14 '17 at 13:59
1
An update - I have created one more folder on my machine, local/opt. Then executed the permission commands. It is perfectly working (python3+pip3) now. Thanks for the Q&A.
– Nithin CV
Jan 2 at 15:09
I'm glad it worked for you.
– Alexander Luna
Jan 2 at 17:23
awesome, you saved my day!
– Andy
Jan 28 at 21:07
|
show 1 more comment
"in high sierra all permissions inside usr/local changed" Do you have a source on that? I haven’t got any issue upgrading to High Sierra.
– bfontaine
Nov 14 '17 at 10:13
2
I read this on github: github.com/Homebrew/brew/issues/3228 And when I listed the usr/local directory, most of the folders needed "root" access. After creating all the folder which brew can't create because I can't run "sudo brew" I changed permission to from "root" to "me" and brew works now fine.
– Alexander Luna
Nov 14 '17 at 13:59
1
An update - I have created one more folder on my machine, local/opt. Then executed the permission commands. It is perfectly working (python3+pip3) now. Thanks for the Q&A.
– Nithin CV
Jan 2 at 15:09
I'm glad it worked for you.
– Alexander Luna
Jan 2 at 17:23
awesome, you saved my day!
– Andy
Jan 28 at 21:07
"in high sierra all permissions inside usr/local changed" Do you have a source on that? I haven’t got any issue upgrading to High Sierra.
– bfontaine
Nov 14 '17 at 10:13
"in high sierra all permissions inside usr/local changed" Do you have a source on that? I haven’t got any issue upgrading to High Sierra.
– bfontaine
Nov 14 '17 at 10:13
2
2
I read this on github: github.com/Homebrew/brew/issues/3228 And when I listed the usr/local directory, most of the folders needed "root" access. After creating all the folder which brew can't create because I can't run "sudo brew" I changed permission to from "root" to "me" and brew works now fine.
– Alexander Luna
Nov 14 '17 at 13:59
I read this on github: github.com/Homebrew/brew/issues/3228 And when I listed the usr/local directory, most of the folders needed "root" access. After creating all the folder which brew can't create because I can't run "sudo brew" I changed permission to from "root" to "me" and brew works now fine.
– Alexander Luna
Nov 14 '17 at 13:59
1
1
An update - I have created one more folder on my machine, local/opt. Then executed the permission commands. It is perfectly working (python3+pip3) now. Thanks for the Q&A.
– Nithin CV
Jan 2 at 15:09
An update - I have created one more folder on my machine, local/opt. Then executed the permission commands. It is perfectly working (python3+pip3) now. Thanks for the Q&A.
– Nithin CV
Jan 2 at 15:09
I'm glad it worked for you.
– Alexander Luna
Jan 2 at 17:23
I'm glad it worked for you.
– Alexander Luna
Jan 2 at 17:23
awesome, you saved my day!
– Andy
Jan 28 at 21:07
awesome, you saved my day!
– Andy
Jan 28 at 21:07
|
show 1 more comment
up vote
2
down vote
After resolving the linking issue (e.g. https://github.com/Homebrew/homebrew-core/issues/19286 ), python3 is installed but not pip3. Reinstalling python (e.g. brew reinstall python) eventually installs pip3 as well. These steps works well for me.
add a comment |
up vote
2
down vote
After resolving the linking issue (e.g. https://github.com/Homebrew/homebrew-core/issues/19286 ), python3 is installed but not pip3. Reinstalling python (e.g. brew reinstall python) eventually installs pip3 as well. These steps works well for me.
add a comment |
up vote
2
down vote
up vote
2
down vote
After resolving the linking issue (e.g. https://github.com/Homebrew/homebrew-core/issues/19286 ), python3 is installed but not pip3. Reinstalling python (e.g. brew reinstall python) eventually installs pip3 as well. These steps works well for me.
After resolving the linking issue (e.g. https://github.com/Homebrew/homebrew-core/issues/19286 ), python3 is installed but not pip3. Reinstalling python (e.g. brew reinstall python) eventually installs pip3 as well. These steps works well for me.
answered Jun 12 at 16:13
Tin Torres
211
211
add a comment |
add a comment |
up vote
1
down vote
I had the same issue and used:
sudo -H pip3 install virtualenv
sudo -H pip3 install virtualenvwrapper --ignore-installed six
nice answer! welcome to stack overflow buddy.
– Rann Lifshitz
Apr 19 at 0:40
add a comment |
up vote
1
down vote
I had the same issue and used:
sudo -H pip3 install virtualenv
sudo -H pip3 install virtualenvwrapper --ignore-installed six
nice answer! welcome to stack overflow buddy.
– Rann Lifshitz
Apr 19 at 0:40
add a comment |
up vote
1
down vote
up vote
1
down vote
I had the same issue and used:
sudo -H pip3 install virtualenv
sudo -H pip3 install virtualenvwrapper --ignore-installed six
I had the same issue and used:
sudo -H pip3 install virtualenv
sudo -H pip3 install virtualenvwrapper --ignore-installed six
edited Nov 9 at 0:04
Greg Sadetsky
3,0032233
3,0032233
answered Apr 19 at 0:19
Heather Akpan
211
211
nice answer! welcome to stack overflow buddy.
– Rann Lifshitz
Apr 19 at 0:40
add a comment |
nice answer! welcome to stack overflow buddy.
– Rann Lifshitz
Apr 19 at 0:40
nice answer! welcome to stack overflow buddy.
– Rann Lifshitz
Apr 19 at 0:40
nice answer! welcome to stack overflow buddy.
– Rann Lifshitz
Apr 19 at 0:40
add a comment |
up vote
0
down vote
GitHub user @aether2501, commenting on a sudo chown solution for a "Homebrew Permission Denied" problem, suggests instead that Homebrew be uninstalled/reinstalled after the upgrade to High Sierra.
I successfully used @aether2501's reinstall command, /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
, on High Sierra (10.13.2) without uninstalling brew first.
In addition to creating the /usr/local/Frameworks directory and setting the necessary ownership and permissions I needed to link python3, it also appears to have fixed other directory issues.
add a comment |
up vote
0
down vote
GitHub user @aether2501, commenting on a sudo chown solution for a "Homebrew Permission Denied" problem, suggests instead that Homebrew be uninstalled/reinstalled after the upgrade to High Sierra.
I successfully used @aether2501's reinstall command, /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
, on High Sierra (10.13.2) without uninstalling brew first.
In addition to creating the /usr/local/Frameworks directory and setting the necessary ownership and permissions I needed to link python3, it also appears to have fixed other directory issues.
add a comment |
up vote
0
down vote
up vote
0
down vote
GitHub user @aether2501, commenting on a sudo chown solution for a "Homebrew Permission Denied" problem, suggests instead that Homebrew be uninstalled/reinstalled after the upgrade to High Sierra.
I successfully used @aether2501's reinstall command, /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
, on High Sierra (10.13.2) without uninstalling brew first.
In addition to creating the /usr/local/Frameworks directory and setting the necessary ownership and permissions I needed to link python3, it also appears to have fixed other directory issues.
GitHub user @aether2501, commenting on a sudo chown solution for a "Homebrew Permission Denied" problem, suggests instead that Homebrew be uninstalled/reinstalled after the upgrade to High Sierra.
I successfully used @aether2501's reinstall command, /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
, on High Sierra (10.13.2) without uninstalling brew first.
In addition to creating the /usr/local/Frameworks directory and setting the necessary ownership and permissions I needed to link python3, it also appears to have fixed other directory issues.
answered Jan 14 at 21:09
Jonathan Hodge
9116
9116
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%2fstackoverflow.com%2fquestions%2f47255517%2fbrew-install-python3-didnt-install-pip3%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
My gut says you wouldn't require
pip3
aspip
picks up your currently active version of python depending on your environment.– nehemiah
Nov 13 '17 at 0:24
My
pip3
is here/usr/local/bin/pip3
– nehemiah
Nov 13 '17 at 0:25