您好我从Homebrew下载了Python,但我的计算机似乎使用的是预安装的Apple版本。
有没有办法改变这一点,以便我的电脑可以使用Homebrew Python?
我在这里读了一些关于bash文件的内容,但我只能在那里看到苹果的东西。 usr / local / Cellar没有任何内容。
答案 0 :(得分:0)
因为我不知道你已经做了什么,如果你正确安装了Homebrew,我会写出你应该怎么做的步骤。我将告诉你如何安装Homebrew以及如何将软件包指向你的路径,以便它在Apple python之前找到你的python。我也假设你有El Capitan。
1)如果您没有Xcode,请从App Store下载。
步骤2-9正在使用终端(应用程序 - >实用程序 - >终端)
2)安装命令行工具
xcode-select --install
3)安装Homebrew(这会将Homebrew安装到root):
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
4)更新brew并与医生核实以解决任何问题:
brew update
brew doctor
5)检查您是否已经有.bash_profile,如果没有。
a)检查.bash_profile
cd $HOME
ls -al
如果你在列表中看到.bash_profile,请跳过(b)
b)创建bash配置文件
cd $HOME
touch .bash_profile
7)将路径导出到bash文件:
cd $HOME
echo export PATH=/usr/local/bin:/usr/local/sbin:$PATH >> ~/.bash_profile
source ~/.bash_profile
8)安装你的包,例如:
brew install python
9)运行医生并解决任何问题:
brew doctor
10)检查路径并确保/ usr / local / bin:在/ usr / local /
之前$PATH
如果在此过程中您收到错误消息,说明您没有权限,请在命令前添加 sudo ,然后重试。
希望它有所帮助!