前提
Google colab で
Google_colab
1!pip show google-pasta
を実行すると、
Google_colab
1Name: google-pasta 2Version: 0.2.0 3Summary: pasta is an AST-based Python refactoring library 4Home-page: https://github.com/google/pasta 5Author: Nick Smith 6Author-email: smithnick@google.com 7License: Apache 2.0 8Location: /usr/local/lib/python3.7/dist-packages 9Requires: six 10Required-by: tensorflow
とログが表示され、インストールされているのがわかります。
実現したいこと
そこで、
Google_colab
1import google_pasta
を実行すると、
Google_colab
1--------------------------------------------------------------------------- 2ModuleNotFoundError Traceback (most recent call last) 3<ipython-input-33-62abbcd90ae9> in <module> 4----> 1 import google_pasta 5 6ModuleNotFoundError: No module named 'google_pasta' 7 8--------------------------------------------------------------------------- 9NOTE: If your import is failing due to a missing package, you can 10manually install dependencies using either !pip or !apt. 11 12To view examples of installing some common dependencies, click the 13"Open Examples" button below. 14---------------------------------------------------------------------------
というエラーメッセージが出ます。
どうもハイフン記号に問題があるようですが、対処法はあるのでしょうか。
回答1件
あなたの回答
tips
プレビュー