今天學(xué)習(xí)全棧營(yíng)第一周課程job-listing的過(guò)程中
在5-1 Fork 教學(xué)中碰到一個(gè)錯(cuò)誤提示,入下圖,由于提示很長(zhǎng),分成2張截圖


主要的意思:Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
An error occurred while installing puma (3.5.2), and Bundler cannot continue.
Make sure that `gem install puma -v '3.5.2' --source 'https://rubygems.org/'` succeeds before bundling.
在google后在stack overflow里找到了解決方法
在終端機(jī)上先后運(yùn)行下列幾條指令:
brew install openssl
bundle config build.puma --with-opt-dir=/usr/local/opt/openssl
bundle install
問(wèn)題就可以得到解決
附上原網(wǎng)址