Variety not starting after update to version 0.8.13-2

Variety does not start after the latest update. When started from the terminal it gives the following error:
Traceback (most recent call last):
File “/usr/bin/variety”, line 66, in
variety.main**()**
~~~~~~~~~~~~^^
File “/usr/lib/python3.13/site-packages/variety/_init_.py”, line 239, in main
window.start**(arguments)**
~~~~~~~~~~~~^^^^^^^^^^^
File “/usr/lib/python3.13/site-packages/variety/VarietyWindow.py”, line 116, in start
self.prepare_config_folder**()**
~~~~~~~~~~~~~~~~~~~~~~~~~~^^
File “/usr/lib/python3.13/site-packages/variety/VarietyWindow.py”, line 253, in prepare_config_folder
varietyconfig.get_data_file**(“config”, “variety.conf”),
~~~~~~~~~~~~~~~~~~~~~~~~~~~
^^^^^^^^^^^^^^^^^^^^^^^^^^**
File “/usr/lib/python3.13/site-packages/variety_lib/varietyconfig.py”, line 42, in get_data_file
return os.path.join(get_data_path**(), *path_segments)
~~~~~~~~~~~~~
^^**
File “/usr/lib/python3.13/site-packages/variety_lib/varietyconfig.py”, line 58, in get_data_path
raise project_path_not_found
variety_lib.varietyconfig.project_path_not_found

Do you have any solutions? Thanks.

Wondering if this is something to do with python, this is the second program I have seen people having issues with that relies on it

It’s already been reported as a bug:

2 Likes

I cheated. I edited the file /usr/lib/python3.13/site-packages/variety_lib/varietyconfig.py (the function get_data_path()). It now reads:

def get_data_path():
return “/usr/share/variety”

It is working now. I don’t know how long it will hold.

3 Likes

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.