I am trying to install psa_car_controller. The instructions say to download the app. I am not sure how, so I tried a bunch of things. I am on ubuntu-24.04.
pip install psa-car-controller did not work because ubuntu is trying hard to prevent the use of pip install.
So I cloned the repository, went into the top folder and ran the following, with the result:
$ python3 -m psa_car_controller
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/home/fred/local/src/psa_car_controller/psa_car_controller/__main__.py", line 11, in <module>
from psa_car_controller.psacc.application.car_controller import PSACarController
File "/home/fred/local/src/psa_car_controller/psa_car_controller/psacc/application/car_controller.py", line 10, in <module>
from oauth2_client.credentials_manager import OAuthError
ModuleNotFoundError: No module named 'oauth2_client'
I did install python3-oauth2client but that did not help.
I am trying to install psa_car_controller. The instructions say to download the app. I am not sure how, so I tried a bunch of things. I am on ubuntu-24.04.
pip install psa-car-controllerdid not work because ubuntu is trying hard to prevent the use ofpip install.So I cloned the repository, went into the top folder and ran the following, with the result:
I did install
python3-oauth2clientbut that did not help.