How to sync Google Calendar gcalcli with Conky/Desktop?

Clash Royale CLAN TAG#URR8PPP
I want to sync my Google Calendar with the Linux Mint 17.2 desktop; preferably through Conky. I'm aware of a method using Thunderbird but I'd rather have it set up as described here. Following the steps, however, I encounter a number of errors (such as ImportError: No module named _MozillaCookieJar among others) and I couldn't manage doing the steps right. Comments in the link update some of the outdated steps but it seems some info is still missing. I tried looking for more updated links and came across this, but again seems the steps don't work properly. Can anyone point out exactly what to do (baby steps please)?
Details: When I do the first step from the first link, I try sudo pip install google-api-python-client and I get the ImportError: No module named _MozillaCookieJar error.
When I tried the second link, I got to the step where it says pip install vobject parsedatetime and even after updating parsedatetime I still get the same ImportError: No module named _MozillaCookieJar error after trying pip install vobject parsedatetime a second time after updating. Maybe it's something wrong with pip?
Either way, I broke this question down into "Main Question" and "Details" because I think even if the "details" are fixed, I'll run into another bad step eventually and so if there is an easier way of going about this, please let me know.
package-management python conky
add a comment |
I want to sync my Google Calendar with the Linux Mint 17.2 desktop; preferably through Conky. I'm aware of a method using Thunderbird but I'd rather have it set up as described here. Following the steps, however, I encounter a number of errors (such as ImportError: No module named _MozillaCookieJar among others) and I couldn't manage doing the steps right. Comments in the link update some of the outdated steps but it seems some info is still missing. I tried looking for more updated links and came across this, but again seems the steps don't work properly. Can anyone point out exactly what to do (baby steps please)?
Details: When I do the first step from the first link, I try sudo pip install google-api-python-client and I get the ImportError: No module named _MozillaCookieJar error.
When I tried the second link, I got to the step where it says pip install vobject parsedatetime and even after updating parsedatetime I still get the same ImportError: No module named _MozillaCookieJar error after trying pip install vobject parsedatetime a second time after updating. Maybe it's something wrong with pip?
Either way, I broke this question down into "Main Question" and "Details" because I think even if the "details" are fixed, I'll run into another bad step eventually and so if there is an easier way of going about this, please let me know.
package-management python conky
What versions of python/pip are you running?
– Jesse K
Aug 27 '15 at 16:30
@JesseKeilson it says I'm using Python 2.7.6, not sure how to check what version pip is (when I tried sudo apt-get install pip it said it was unable to locate the package)
– FearfulAnon
Aug 27 '15 at 16:33
I'm asking because of this thread: stackoverflow.com/questions/9857677/… Looks like there were some name changes in some of the dependencies. You'll probably want to try installing python3sudo yum install python3and then for pip, tryapt-cache search pipto figure out the right package name, though I'm pretty sure it's python-pip.
– Jesse K
Aug 27 '15 at 16:44
@JesseKeilson I think gcalcli says it won't work with python3; I usedapt-cache search pipand you're right, it'spython-pipbut that's already installed apparently so I don't think that's the problem either.
– FearfulAnon
Aug 27 '15 at 16:53
Right you are! Let me read a little closer before I make more comments that don't apply.
– Jesse K
Aug 27 '15 at 17:07
add a comment |
I want to sync my Google Calendar with the Linux Mint 17.2 desktop; preferably through Conky. I'm aware of a method using Thunderbird but I'd rather have it set up as described here. Following the steps, however, I encounter a number of errors (such as ImportError: No module named _MozillaCookieJar among others) and I couldn't manage doing the steps right. Comments in the link update some of the outdated steps but it seems some info is still missing. I tried looking for more updated links and came across this, but again seems the steps don't work properly. Can anyone point out exactly what to do (baby steps please)?
Details: When I do the first step from the first link, I try sudo pip install google-api-python-client and I get the ImportError: No module named _MozillaCookieJar error.
When I tried the second link, I got to the step where it says pip install vobject parsedatetime and even after updating parsedatetime I still get the same ImportError: No module named _MozillaCookieJar error after trying pip install vobject parsedatetime a second time after updating. Maybe it's something wrong with pip?
Either way, I broke this question down into "Main Question" and "Details" because I think even if the "details" are fixed, I'll run into another bad step eventually and so if there is an easier way of going about this, please let me know.
package-management python conky
I want to sync my Google Calendar with the Linux Mint 17.2 desktop; preferably through Conky. I'm aware of a method using Thunderbird but I'd rather have it set up as described here. Following the steps, however, I encounter a number of errors (such as ImportError: No module named _MozillaCookieJar among others) and I couldn't manage doing the steps right. Comments in the link update some of the outdated steps but it seems some info is still missing. I tried looking for more updated links and came across this, but again seems the steps don't work properly. Can anyone point out exactly what to do (baby steps please)?
Details: When I do the first step from the first link, I try sudo pip install google-api-python-client and I get the ImportError: No module named _MozillaCookieJar error.
When I tried the second link, I got to the step where it says pip install vobject parsedatetime and even after updating parsedatetime I still get the same ImportError: No module named _MozillaCookieJar error after trying pip install vobject parsedatetime a second time after updating. Maybe it's something wrong with pip?
Either way, I broke this question down into "Main Question" and "Details" because I think even if the "details" are fixed, I'll run into another bad step eventually and so if there is an easier way of going about this, please let me know.
package-management python conky
package-management python conky
edited Feb 10 at 19:11
Rui F Ribeiro
41.1k1479137
41.1k1479137
asked Aug 27 '15 at 16:06
FearfulAnonFearfulAnon
393
393
What versions of python/pip are you running?
– Jesse K
Aug 27 '15 at 16:30
@JesseKeilson it says I'm using Python 2.7.6, not sure how to check what version pip is (when I tried sudo apt-get install pip it said it was unable to locate the package)
– FearfulAnon
Aug 27 '15 at 16:33
I'm asking because of this thread: stackoverflow.com/questions/9857677/… Looks like there were some name changes in some of the dependencies. You'll probably want to try installing python3sudo yum install python3and then for pip, tryapt-cache search pipto figure out the right package name, though I'm pretty sure it's python-pip.
– Jesse K
Aug 27 '15 at 16:44
@JesseKeilson I think gcalcli says it won't work with python3; I usedapt-cache search pipand you're right, it'spython-pipbut that's already installed apparently so I don't think that's the problem either.
– FearfulAnon
Aug 27 '15 at 16:53
Right you are! Let me read a little closer before I make more comments that don't apply.
– Jesse K
Aug 27 '15 at 17:07
add a comment |
What versions of python/pip are you running?
– Jesse K
Aug 27 '15 at 16:30
@JesseKeilson it says I'm using Python 2.7.6, not sure how to check what version pip is (when I tried sudo apt-get install pip it said it was unable to locate the package)
– FearfulAnon
Aug 27 '15 at 16:33
I'm asking because of this thread: stackoverflow.com/questions/9857677/… Looks like there were some name changes in some of the dependencies. You'll probably want to try installing python3sudo yum install python3and then for pip, tryapt-cache search pipto figure out the right package name, though I'm pretty sure it's python-pip.
– Jesse K
Aug 27 '15 at 16:44
@JesseKeilson I think gcalcli says it won't work with python3; I usedapt-cache search pipand you're right, it'spython-pipbut that's already installed apparently so I don't think that's the problem either.
– FearfulAnon
Aug 27 '15 at 16:53
Right you are! Let me read a little closer before I make more comments that don't apply.
– Jesse K
Aug 27 '15 at 17:07
What versions of python/pip are you running?
– Jesse K
Aug 27 '15 at 16:30
What versions of python/pip are you running?
– Jesse K
Aug 27 '15 at 16:30
@JesseKeilson it says I'm using Python 2.7.6, not sure how to check what version pip is (when I tried sudo apt-get install pip it said it was unable to locate the package)
– FearfulAnon
Aug 27 '15 at 16:33
@JesseKeilson it says I'm using Python 2.7.6, not sure how to check what version pip is (when I tried sudo apt-get install pip it said it was unable to locate the package)
– FearfulAnon
Aug 27 '15 at 16:33
I'm asking because of this thread: stackoverflow.com/questions/9857677/… Looks like there were some name changes in some of the dependencies. You'll probably want to try installing python3
sudo yum install python3 and then for pip, try apt-cache search pip to figure out the right package name, though I'm pretty sure it's python-pip.– Jesse K
Aug 27 '15 at 16:44
I'm asking because of this thread: stackoverflow.com/questions/9857677/… Looks like there were some name changes in some of the dependencies. You'll probably want to try installing python3
sudo yum install python3 and then for pip, try apt-cache search pip to figure out the right package name, though I'm pretty sure it's python-pip.– Jesse K
Aug 27 '15 at 16:44
@JesseKeilson I think gcalcli says it won't work with python3; I used
apt-cache search pip and you're right, it's python-pip but that's already installed apparently so I don't think that's the problem either.– FearfulAnon
Aug 27 '15 at 16:53
@JesseKeilson I think gcalcli says it won't work with python3; I used
apt-cache search pip and you're right, it's python-pip but that's already installed apparently so I don't think that's the problem either.– FearfulAnon
Aug 27 '15 at 16:53
Right you are! Let me read a little closer before I make more comments that don't apply.
– Jesse K
Aug 27 '15 at 17:07
Right you are! Let me read a little closer before I make more comments that don't apply.
– Jesse K
Aug 27 '15 at 17:07
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f225900%2fhow-to-sync-google-calendar-gcalcli-with-conky-desktop%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f225900%2fhow-to-sync-google-calendar-gcalcli-with-conky-desktop%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What versions of python/pip are you running?
– Jesse K
Aug 27 '15 at 16:30
@JesseKeilson it says I'm using Python 2.7.6, not sure how to check what version pip is (when I tried sudo apt-get install pip it said it was unable to locate the package)
– FearfulAnon
Aug 27 '15 at 16:33
I'm asking because of this thread: stackoverflow.com/questions/9857677/… Looks like there were some name changes in some of the dependencies. You'll probably want to try installing python3
sudo yum install python3and then for pip, tryapt-cache search pipto figure out the right package name, though I'm pretty sure it's python-pip.– Jesse K
Aug 27 '15 at 16:44
@JesseKeilson I think gcalcli says it won't work with python3; I used
apt-cache search pipand you're right, it'spython-pipbut that's already installed apparently so I don't think that's the problem either.– FearfulAnon
Aug 27 '15 at 16:53
Right you are! Let me read a little closer before I make more comments that don't apply.
– Jesse K
Aug 27 '15 at 17:07