作者:小伟 | 来源:互联网 | 2023-09-02 09:30
问题描述本来打算更新mongoDB的数据库,然后发现mongoDB不再是开源了,以前brewinstallmongodb会报错,然后就去官网看了下现在的安装方法:
问题描述
本来打算更新mongoDB的数据库,然后发现mongoDB不再是开源了,以前brew install mongodb会报错,然后就去官网看了下现在的安装方法:
1 2
| brew tap mongodb/brew
brew install mongodb-community@4.2 |
安装的时候就出问题了,有报错,让我安装GCC;安装GCC时继续报错,让我安装xcode-select。由于我不太清楚发生了什么,网上也没有搜到类似的问题,我就没有继续安装了。
问题出现的平台版本及自己尝试过哪些方法
MacOS 当前的版本号是10.15
希望安装的mongoDB的版本号是mongodb-community@4.2
相关代码
执行 brew install mongodb-community@4.2
1 2 3 4
| Error: An exception occurred within a child process:
CompilerSelectionError: mongodb/brew/mongodb-community cannot be built with any available compilers.
Install GNU's GCC:
brew install gcc |
执行 brew install gcc
1 2 3 4 5
| Error: The following formula
gcc
cannot be installed as binary package and must be built from source.
Install the Command Line Tools:
xcode-select --install |
执行 xcode-select --install
1
| xcode-select: note: install requested for command line developer tools |
你期待的结果是什么?实际看到的错误信息又是什么?
我目前就是希望能安装上mongoDB,报错都贴出来了。