I'm trying to create a backup using deja dup backup tool. When I click Bakcup now... I'm getting the message:
In order to continue the following packages need to be installed: python3-pydrive
I've tried searching for a tutorial in how to do this, and found one on linuxsize
https://linuxize.com/post/how-to-install-pip-on-ubuntu-20.04/
This suggests that it's better to install python 3 from apt unless you are installing to a virtual environment, in which case pip install is appropriate.
What is the best way to install python3-pydrive on Ubuntu 20.04?
sudo apt install python3-pydrive
(ie. get the package designed to be used for focal/20.04 unless you've mangled your sources). As I read your text, it's what the article suggested anyway. – guiverc Jun 02 '20 at 06:27apt-cache policy python3-pydrive
.. it'll tell you if you've any package name installed, plus in my case what package(s) are available (and from where) with that name... (or if package name isn't completely known, or just because -- tryapt-cache search pydrive
(which should find any packages with pydrive in the name letting you narrow down needed package, see what is available etc)... – guiverc Jun 02 '20 at 22:33