ModuleNotFoundError: No module named 'googleapiclient

前端 未结 2 485
没有蜡笔的小新
没有蜡笔的小新 2021-01-28 13:24

Apologies if this is a silly question. I searched in stackoverflow. But did not find the solution. I am working on migration from Python 2.7 to Python 3.8. I am getting the bel

相关标签:
2条回答
  • 2021-01-28 13:46

    Thanks for your responses. I think Python3.8 is not good option.

    pip install google-api-python-client
    

    The above one fixed my issue.

    I compared Python2.7 & Python3.8 pip list. So I installed version of 2.7 in 3.8.

    0 讨论(0)
  • 2021-01-28 14:04

    If you don't have to use Python 3.8, please uninstall it and install 3.6.X (X can be 5, my suggestion). The last version of Python 3.8 still can have bugs.

    After, please enter this command pip install googleapiclient on cmd, or, install googleapiclient manual. If you don't know how to do it, inform me, I can edit my answer.

    0 讨论(0)
提交回复
热议问题