How to install python3 pydrive on Ubuntu / Debian Linux (Google Drive API Python wrapper library)

https‮w//:‬ww.lautturi.com
How to install python3 pydrive on Ubuntu / Debian Linux (Google Drive API Python wrapper library)

To install pydrive (a Python wrapper library for the Google Drive API) on Ubuntu or Debian Linux, you can use the following steps:

  1. Install the required packages:
sudo apt-get update
sudo apt-get install -y python3-pip

This will install pip, the Python package manager, which is required to install pydrive.

  1. Install pydrive:
pip3 install pydrive

This will install the latest version of pydrive available from the Python Package Index (PyPI).

  1. Test the installation:
python3 -c "import pydrive; print(pydrive.__version__)"

This will import the pydrive module and print the version number, indicating that it is installed and working correctly.

Created Time:2017-10-28 21:39:05  Author:lautturi