7
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Embulkのembulk-output-bigqueryのインストールエラー回避方法

Last updated at Posted at 2022-09-03

Embulkのpluginのembulk-output-bigqueryをインストールする際に詰まったのでその回避方法をメモしておきます。

環境
Embulk v0.9.24

内容:representable

ERROR:  Error installing embulk-output-bigquery:
	representable requires Ruby version >= 2.4.0.

回避方法:

embulk gem install representable -v 3.0.4

関連isssue:こちら

内容:

ERROR:  Error installing embulk-output-bigquery:
	public_suffix requires Ruby version >= 2.6.

回避方法:

embulk gem install public_suffix -v 4.0.7

内容:

ERROR:  Error installing embulk-output-bigquery:
    multipart-post requires Ruby version >= 2.6.0.

回避方法:
embulk gem install multipart-post -v 2.1.1

内容:

ERROR:  Error installing embulk-output-bigquery:
    jwt requires Ruby version >= 2.5.0.

回避方法:

embulk gem install jwt v2.3.0

関連issue:こちら

ruby関係のバージョンの追従あたりが問題で、
https://rubygems.org/gems/
ここやgithubでgemを検索して、どのようなアップデートでrequireが変わったのか見ると応用が効きそうです。

7
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?