Hello,
When running a script on a Debian 12 host that worked fine on Windows, a method is missing because a module is older on Debian.
What is the recommended fix?
If possible, I prefer to use apt to install packages as an easy way to upgrade things.
Thank you.
When running a script on a Debian 12 host that worked fine on Windows, a method is missing because a module is older on Debian.
What is the recommended fix?
If possible, I prefer to use apt to install packages as an easy way to upgrade things.
Thank you.
Traceback (most recent call last):
File "blah.py", line 34, in create_events_list
for event in gcal.events:
^^^^^^^^^^^
AttributeError: 'Calendar' object has no attribute 'events'
#Linux
~# pip freeze | grep icalendar
icalendar==4.0.3
~# python3 --version
Python 3.11.2
#Windows
pip freeze | findstr icalendar
icalendar==6.3.2
py --version
Python 3.13.2
apt install python3-icalendar --upgrade
python3-icalendar is already the newest version (4.0.3-5).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
