无法在 Gentoo 上安装 MySQL 客户端库

无法在 Gentoo 上安装 MySQL 客户端库

我是 Gentoo 的新手。我正在尝试安装 mysql2 gem。但它被卡住了。我发现我需要 MySQL 客户端库。我试过:

emerge dev-db/mysql:minimal

 * IMPORTANT: 2 news items need reading for repository 'gentoo'.
 * Use eselect news to read news items.

 * IMPORTANT: config file '/etc/portage/package.keywords' needs updating.
 * See the CONFIGURATION FILES section of the emerge
 * man page to learn how to update config files.
Calculating dependencies... done!

emerge: there are no ebuilds to satisfy "dev-db/mysql:minimal".

而且它没有安装。我需要做什么?

答案1

Gems 通常不通过 portage 安装。要安装 Ruby gem,请确保rubygems已合并,然后运行gem20 install <gem>gem21 install <gem>取决于您的系统。

编辑:由于emerge --search mysql-minimal没有返回任何内容,因此您知道它不在 portage 树中并且无法使用 emerge 进行安装。运行gem search mysql2表明该库可以安装gem install mysql2

相关内容