我通过homebrew安装了vapor,然后立即想通过执行vapor new Hello进入一个项目,但随后在终端中得到了以下消息:
dyld: Library not loaded: /usr/local/opt/openssl/lib/libssl.1.0.0.dylib
Referenced from: /usr/local/bin/vapor
Reason: image not found
zsh: abort vapor new Hello
我尝试了一些方法来解决这个问题,比如通过brew卸载并重新安装openssl,但这并不奏效。我还尝试了一些我在网上找到的东西,但没有工作。我认为这与蒸汽只适用于1.0.0版本有关,而不是1.1.1版本,这就是我所拥有的。我想我需要降级到1.0.0,但我是怎么做到的?我在用MacOS卡塔琳娜,如果有关系的话。
我在我的系统上安装了openssl1.1,但是rails以某种方式使用了旧的引用,即/usr/local/opt/openssl/lib/libssl.1.0.0。dylib (LoadError),但这在我的Mojave 14上不存在。
我尝试了下面的解决方案,但运气不佳:
openssl 1.0.2t (Error: Unknown command: switch)
reintalling openssl
将openssl版本降级至1.0
重新安装rvm和ruby
最后,解决方案如下:
cp /usr/local/opt/openssl/lib/libssl.1.1.dylib /usr/local/opt/openssl/lib/libssl.1.0.0.dylib
cp /usr/local/opt/openssl/lib/libcrypto.1.1.dylib /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib
只需复制新的openssl链接到旧的
OR
创建如下的符号链接:
ln -sfn /usr/local/Cellar/openssl@1.0/1.0.2t /usr/local/opt/openssl@1.0
我在我的系统上安装了openssl1.1,但是rails以某种方式使用了旧的引用,即/usr/local/opt/openssl/lib/libssl.1.0.0。dylib (LoadError),但这在我的Mojave 14上不存在。
我尝试了下面的解决方案,但运气不佳:
openssl 1.0.2t (Error: Unknown command: switch)
reintalling openssl
将openssl版本降级至1.0
重新安装rvm和ruby
最后,解决方案如下:
cp /usr/local/opt/openssl/lib/libssl.1.1.dylib /usr/local/opt/openssl/lib/libssl.1.0.0.dylib
cp /usr/local/opt/openssl/lib/libcrypto.1.1.dylib /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib
只需复制新的openssl链接到旧的
OR
创建如下的符号链接:
ln -sfn /usr/local/Cellar/openssl@1.0/1.0.2t /usr/local/opt/openssl@1.0
解释解决方案:似乎需要安装当前brew存储库(1.0.2t版本)中不再存在的旧openssl版本。为了解决这个问题,你应该创建一个tap并提取一个旧版本(查看存储库历史),在新安装后创建一个到这个版本的链接,你就会链接到正确的版本。
brew uninstall --ignore-dependencies openssl
brew tap-new $USER/old-openssl
brew extract --version=1.0.2t openssl $USER/old-openssl
brew install openssl@1.0.2t
ln -s /usr/local/Cellar/openssl@1.0.2t/1.0.2t /usr/local/opt/openssl
文档:
点击(第三方存储库)酿造点击添加更多存储库到
用于brew跟踪、更新和安装的公式列表。通过
默认情况下,tap假设存储库来自GitHub,但是
命令不局限于任何一个位置。
tap-new [options] user/repo
Generate the template files for a new tap.
--no-git: Don’t initialize a git repository for the tap.
--pull-label: Label name for pull requests ready to be pulled (default pr-pull).
--branch: Initialize git repository with the specified branch name (default main).
提取[选项]公式轻按查看存储库历史记录以查找
并在公式的最新版本中创建一个副本
利用公式/ formula@version.rb。如果水龙头还没有安装,
在继续之前尝试安装/克隆水龙头。提取
配方来自一个水龙头,不是自制/核心使用其完全合格
用户/回购/公式的形式。
extract [options] package user/repo
--version: Extract the specified version of formula instead of the most recent.
-f, --force: Overwrite the destination formula if it already exists.