Mopidy startup error MacOS 10.15.4

attempt to run mopidy, i receive the following error:

ERROR: A GObject based library was not found.

Mopidy requires GStreamer to work. GStreamer is a C library with a
number of dependencies itself, and cannot be installed with the regular
Python tools like pip.

Please see https://docs.mopidy.com/en/latest/installation/ for
instructions on how to install the required dependencies.

Traceback (most recent call last):
File “/usr/local/bin/mopidy”, line 5, in
from mopidy.main import main
File “/usr/local/lib/python3.7/site-packages/mopidy/main.py”, line 7, in
from mopidy import commands
File “/usr/local/lib/python3.7/site-packages/mopidy/commands.py”, line 15, in
from mopidy.audio import Audio
File “/usr/local/lib/python3.7/site-packages/mopidy/audio/init.py”, line 2, in
from .actor import Audio
File “/usr/local/lib/python3.7/site-packages/mopidy/audio/actor.py”, line 8, in
from mopidy.audio import tags as tags_lib
File “/usr/local/lib/python3.7/site-packages/mopidy/audio/tags.py”, line 7, in
from mopidy.internal.gi import GLib, Gst
File “/usr/local/lib/python3.7/site-packages/mopidy/internal/gi.py”, line 5, in
import gi
ModuleNotFoundError: No module named ‘gi’

attempted fix suggested HERE

[quote=“troyxmccall, post:3, topic:2387, full:true”]
found the culprit

needed to

brew reinstall gst-python --without-python --with-python@2

[/quote]
receive the following error

Error: invalid option: --without-python

Any thoughts?

I have never used macOS or brew but that workaround looks like it’s trying to install something with Python 2, which may have worked in 2018 but won’t work now. Ths current version of Mopidy requires Python 3.

I have the same issue. Did you resolve it in the end?