我在桌面上创建了一个名为project_env的虚拟环境。然后,我从github(https://github.com/googleapis/google-api-python-client)安装了Google API Python客户端。然后使用以下代码创建一个名为youtube.py的Python文件。运行文件时,出现“ ImportError no module googleapiclient”
from googleapiclient.discovery import build
api_key = "My Key"
youtube = build('youtube', 'v3', developerKeys=api_key)
request = youtube.channels().list(
part='statistics',
forUsername='livelifetothefull'
)
response = request.execute()
print(response)
我对此很陌生,因此,非常感谢您的帮助。
您可以尝试以下命令:
cd project_env
source bin/activate
bin/pip install wheel
bin/pip install google-api-python-client
bin/python -c "from googleapiclient.discovery import build"