こすたろーんエンジニアの試行錯誤部屋

作成物の備忘録を書いていきますー

【pandas】how to deal with the error that is "ValueError Unknown engine openpyxl"

スポンサーリンク

ValueError: Unknown engine: openpyxl" may occur when reading excel in the pandas module.
This article is a reminder of what to do when the above error occurs even though the relevant modules are already installed.

contents

スポンサーリンク

abstract

how to deal with the error that is "ValueError Unknown engine openpyxl".

1.requirement

Jetson Xavier NX
ubuntu18.04
docker19.03.6

2. reason

This is occurring due to an older version of pandas

3.how to deal with

The following command will raise the version of pandas

pip install -U pandas

This will install pandas 1.1.5 and avoid the error.

スポンサーリンク