nautilus-git
nautilus-git copied to clipboard
ModuleNotFoundError: No module named 'urlparse'
I found that this extension does not work correctly in my local, It seems that either I dont have the right python version, or a missing module? But I did not find any requirements file :S Any clue?
➜ mangata-e2e git:(feature/benchmarking-A) ✗ nautilus ./
Traceback (most recent call last):
File "/usr/share/nautilus-python/extensions/nautilus-git.py", line 39, in <module>
from utils import is_git
File "/usr/share/nautilus-git/src/utils.py", line 22, in <module>
from urlparse import urlsplit
ModuleNotFoundError: No module named 'urlparse'
less /usr/share/nautilus-git/src/utils.py
I tried with both versions of python
mangata-e2e git:(feature/benchmarking-A) ✗ python --version
Python 3.10.3
and
➜ mangata-node git:(feature/use-mangata-registrator) python --version
Python 2.7.18
Thanks!