我用brew安装python3
装完了发现 输入python3毫无反应,检查了 $PATH 也没有任何问题
这个时候回去看安装过程,发现安装时有一个错误:
1
|
ERROR:The `brew link` step did not complete successfully The formula built, but is not symlinked into /usr/local Could not symlink lib/pkgconfig/python-3.6.pc |
(好像是这个,安装的时候忘了截图)
总之就是提醒你brew 它没有link到python3(就是没有安装快捷方式,电脑还不知道python3是干啥用的)
然后电脑友情的提示你用link命令
1
|
brew link python3 |
解决!
.
.
.个屁啊
然后我发现还是没有用,于是输入命令看看doctor怎么说:
1
|
brew doctor |
看它怎么说(我的是这样的):
1
2
3
4
5
6
|
Warning: You have unlinked kegs in your Cellar Leaving kegs unlinked can lead to build-trouble and cause brews that depend on those kegs to fail to run properly once built. Run `brew link` on these: pcre python3 xz |
然后还有一些warning,它会提醒你怎么改的,其中他也会提醒你xcode也需要更新,但是如果appstore没有提醒你更新,就说明不是xcode的版本问题。
一番搜索后发现,需要先link xz这个东东,
于是输入:
1
|
brew link xz |
然后…又报错:
1
2
3
|
Linking /usr/local/Cellar/xz/5.2.3... Error: Could not symlink lib/pkgconfig/liblzma.pc /usr/local/lib/pkgconfig is not writable. |
然后电脑提示你,这个目录没有写的权限啊~
那我们就给他权限:
输入:
1
|
sudo chown -R $USER /usr/local/lib/pkgconfig |
再输入一遍,如果有下面的结果,就说明有希望了:
1
2
|
brew link xz Linking /usr/local/Cellar/xz/5.2.3... 53 symlinks created |
此时你可以再用brew link 一下 python3看看,我比较担心python3安装的时候会不会出错啥的,所以直接重装了一下。
这个时候输入python3试试:
1
2
3
4
5
|
python3 Python 3.6.2 (default, Jul 17 2017, 16:44:45) [GCC 4.2.1 Compatible Apple LLVM 8.1.0 (clang-802.0.42)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> |
终于能用了=。=
以上这篇安装python3的时候就是输入python3死活没有反应的解决方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:http://blog.csdn.net/u011109629/article/details/76804791