I created a virtual environment on my Desktop called project_env. I then installed the Google API Python Client from github (https://github.com/googleapis/google-api-python-client). Then created a Python file called youtube.py with the following code. When I run the file I get "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)
I'm very new to this, so any help would be much appreciated.
 
     
    