Skip to content Skip to sidebar Skip to footer

Trouble Installing Some Libraries In Python (oauth2client And Gspread)

I'm using python 3.7 (environment created by anaconda) and trying to run python code that uses some google libraries but I don't really know how to install them. From PyCharm IDE (

Solution 1:

If you're using Anaconda, you should also have an Anaconda Prompt (py37) program that functions like the terminal. Typing pip install --upgrade oauth2client into Anaconda Prompt (py37) will install the upgrade into your current python environment. Alternatively, you can use conda install with more options (including specifying which environment you want).


Post a Comment for "Trouble Installing Some Libraries In Python (oauth2client And Gspread)"