Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot install googleapiclient on PyCharm

I have recently installed PyCharm on my Raspberry Pi 3 b+ (Running version 9 [Stretch]) and I am having some trouble installing the googleapiclient package on PyCharm and the system.

When I perform a pip/pip3 install for this package I receive an error stating:

ERROR: Could not find a version that satisfies the requirement googleapiclient (from versions: none)

ERROR: No matching distribution found for googleapiclient

This is the same error message that I receive on PyCharm when it tries to do a pip install. Python 3.7.3 has been installed and 2.7.13 from default. PyCharm project interpreter is running 3.5. I have performed an apt-get update & upgrade also.

I have been able to successfully install other packages with pip/pip3 as well.

Am I missing any other packages/dependencies?

like image 884
beng95 Avatar asked Jun 28 '19 09:06

beng95


People also ask

How do I install Google API for Python?

Type "cmd" in the search bar and hit Enter to open the command line. What is this? Type “ pip install google-api-python-client ” (without quotes) in the command line and hit Enter again. This installs google-api-python-client for your default Python installation.


1 Answers

I think you're just using the wrong name. Try pip install google-api-python-client as specified here

like image 149
tituszban Avatar answered Oct 04 '22 18:10

tituszban