Hi. I am creating a port that's written in python. IIRC, i was able to run it before but i don't remember how i was able to run the executable binary. Now, it doesn't even seem to create a executable binary. There is __init__.py in source code root but i don't think i should move this as a executable binary. There is src/cli/__main__.py but that gives error below. You can look at the port from here. I am attaching zip archive of the port too. What .py file should i run in order to execute mov-cli?
Another way of running it
devel/py-pyinquirer is already installed.
Thanks in advance.
Code:
# python3.11 work-py311/mov_cli-4.4.15/mov_cli/cli/__main__.py
Traceback (most recent call last):
File "/home/yusuf/Documents/yusuf-ports/www/py-mov-cli/work-py311/mov_cli-4.4.15/mov_cli/cli/__main__.py", line 12, in <module>
from .play import play
ImportError: attempted relative import with no known parent package
Another way of running it
Code:
# python3.11 -m mov_cli
Traceback (most recent call last):
File "<frozen runpy>", line 189, in _run_module_as_main
File "<frozen runpy>", line 148, in _get_module_details
File "<frozen runpy>", line 112, in _get_module_details
File "/usr/local/lib/python3.11/site-packages/mov_cli/__init__.py", line 2, in <module>
from .cli import *
File "/usr/local/lib/python3.11/site-packages/mov_cli/cli/__init__.py", line 1, in <module>
from .ui import *
File "/usr/local/lib/python3.11/site-packages/mov_cli/cli/ui.py", line 21, in <module>
import inquirer
ModuleNotFoundError: No module named 'inquirer'
devel/py-pyinquirer is already installed.
Thanks in advance.