google colabでmecab-python3をpipインストールした後、import mecabするとエラーになります。
1.mecab本体をインストール:成功

!apt-get install mecab mecab-ipadic-utf8 libmecab-dev swig

2.mecab-python3をインストール:最新ver0.8.2は失敗するので、ver0.8.0指定で成功。

!pip install mecab-python3==0.8.0

3.importするとエラー

import mecab
---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-58-71af23e59d14> in <module>()
----> 1 import mecab

ModuleNotFoundError: No module named 'mecab'

---------------------------------------------------------------------------
NOTE: If your import is failing due to a missing package, you can
manually install dependencies using either !pip or !apt.

To view examples of installing some common dependencies, click the
"Open Examples" button below.
---------------------------------------------------------------------------

google colabのnotebookはこちらです。
https://colab.research.google.com/drive/1Bm81uSoJQOyERAi0wDvrvZ-A-ex2-cbf

大変恐縮ではございますが、皆様の温かいご指導ご鞭撻を期待しております。