Pitivi wont open

i tried with both the pacman package and flatpak, but when i try to open pitivi from the terminal i just get this error:

> Missing soft dependency:
> - cvtracker GStreamer element not found on the system
>     -> enables object tracking
> Missing soft dependency:
> - librosa not found on the system
>     -> enables beat detection functionality
> Gdk-Message: 00:51:52.570: Unable to load left_side from the cursor theme
> Traceback (most recent call last):
>   File "/usr/bin/pitivi", line 172, in <module>
>     _run_pitivi()
>   File "/usr/bin/pitivi", line 143, in _run_pitivi
>     from pitivi import application
>   File "/usr/lib/pitivi/python/pitivi/application.py", line 32, in <module>
>     from pitivi.effects import EffectsManager
>   File "/usr/lib/pitivi/python/pitivi/effects.py", line 50, in <module>
>     from pitivi.trackerperspective import EFFECT_TRACKED_OBJECT_ID_META
>   File "/usr/lib/pitivi/python/pitivi/trackerperspective.py", line 44, in <module>
>     from pitivi.utils.ui import fix_infobar
>   File "/usr/lib/pitivi/python/pitivi/utils/ui.py", line 79, in <module>
>     GES.Edge.EDGE_START: Gdk.Cursor.new(Gdk.CursorType.LEFT_SIDE),
> TypeError: constructor returned NULL

im on kde plasma on wayland. anything i can do? (i dont speak python)

Installing it as an Arch Linux package, did you look at it’s dependencies and make sure they’ve been installed?
https://archlinux.org/packages/community/x86_64/pitivi/

It’s telling you that there are dependencies missing.

The cvtracker is part of the GStreamer package.

The pkg. librosa can be installed via Python

they are not installed per dependency and are optional …

1 Like

This looks like it’s the problem:

Gdk-Message: 00:51:52.570: Unable to load left_side from the cursor theme

If you’re using a custom cursor theme, you might want to try switching back to the default breeze cursor.

1 Like

https://bugzilla.redhat.com/show_bug.cgi?id=1435447

But works for me with Bibata.

1 Like

yay -S python-librosa gst-plugin-opencv

1 Like

isnt pacman supposed to resolve dependencies automatically?

1 Like

yeah i changed it to adwaita and it works now. which is weird but ok

1 Like

Yes, but only required (or hard) dependencies. The warnings that you were seeing were informational warnings, telling you that some functionality that you might want will not be available without certain optional (or soft) dependencies installed (in this case, object tracking and beat detection). The lack of those soft dependencies would not keep the application from opening or otherwise running.

In this case, the relevant error messages were the ones telling you that you had a problem in your cursor theme (LEFT_SIDE appears to be missing or corrupt).

2 Likes

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