SSJB's blog

いろいろです。

Mac で pandas `UserWarning: Could not import the lzma module` の対処法

Mac で pandas の使用時に以下のエラーが出ました。
UserWarning: Could not import the lzma module. Your installed Python is incomplete. Attempting to use lzma compression will result in a RuntimeError. warnings.warn(msg)

Mac の場合は、以下で対処できました。

$ pip uninstall pandas
$ xcode-select --install
$ pyenv uninstall 3.8.1
$ pyenv install 3.8.1
$ pip install pandas

xcode-select --install をした後に、pythonを再インストールする必要があるようです。

環境
* Python 3.8.1
* pandas 1.0.4
* macOS Catalina v10.15.5