我正在尝试使用diesel.rs库演示防锈数据库程序。
我正在按照入门步骤here进行操作。
如本页所述,运行命令cargo install diesel_cli
时出现以下错误。
note: ld: library not found for -lmysqlclient
clang: error: linker command failed with exit code 1 (use -v to see invocation)
解决方案将在下一步中给出,如下所示。
You can resolve this issue by either installing the library (using the usual way to do this depending on your operating system) or by specifying the backends you want to install the CLI tool with.
但我不知道如何在我的Mac OS中执行此操作。我尝试了以下命令。
brew install mysqlclient
brew install lmysqlclient
但酿造找不到任何这样的回购。 请帮我解决这个错误,并在我的mac OS中安装mysqlclient库。