comparison README.txt @ 136:aa3478847735

Update the instructions.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 05 Oct 2020 15:35:23 +0300
parents afdef805e9b7
children 4bf07e58baa8
comparison
equal deleted inserted replaced
134:afdef805e9b7 136:aa3478847735
28 28
29 29
30 Installation 30 Installation
31 ============ 31 ============
32 32
33 First, we need to install the required Python tools in order to 33 In Debian 10.x there is a pre-packaged version og Google API Python
34 install the required Google API Python modules ... in Debian 9.x, 34 modules available:
35 chant the following magic incantations:
36 35
37 $ sudo apt-get install python3-pip python3-setuptools python3-wheel 36 $ sudo apt-get install python3-googleapi
38 37
39 In older version of Debian, Ubuntu and other distributions package 38 If you are on earlier version of Debian or some other distribution,
40 names may be different. Most important is to have PIP installed, 39 you may have to use PIP to install the modules locally.
41 and that the next step runs without fatal errors.
42
43
44 Then, use PIP to install Google API stuff locally for the user ..
45 40
46 $ pip3 install --upgrade google-api-python-client 41 $ pip3 install --upgrade google-api-python-client
47 42
48 If the installation passes without errors, you are good to go. 43 If the installation passes without errors, you are good to go.
49 At this point, you will need to enable the Calendar API from 44 At this point, you will need to enable the Calendar API from
50 Google's control panel. Refer to the following web page: 45 Google's control panel. Refer to the following web page:
51 46
52 https://developers.google.com/google-apps/calendar/quickstart/python 47 https://developers.google.com/calendar/quickstart/python
53 48
54 The section "Step 1" has the instructions. We've already done "Step 2", 49 The section "Step 1" has the instructions. We've already done "Step 2",
55 which is incomplete in the guide anyway. 50 which is incomplete in the guide anyway.
56 51
57 52