Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Package name should be lower case #2

Open
Ramblurr opened this issue Sep 12, 2023 · 0 comments · May be fixed by #3
Open

Package name should be lower case #2

Ramblurr opened this issue Sep 12, 2023 · 0 comments · May be fixed by #3

Comments

@Ramblurr
Copy link

Installed packages:

$ ls .venv/lib/python3.11/site-packages -al |grep -i hive
drwxr-xr-x  2 ovos ovos     161 Jul  1 23:42 HiveMind_cli-0.5.0a1.egg-info
drwxr-xr-x  3 ovos ovos     169 Jul  1 23:42 HiveMind_presence
drwxr-xr-x  2 ovos ovos     137 Jul  1 23:42 HiveMind_presence-0.0.2a2.egg-info
drwxr-xr-x  3 ovos ovos     115 Jul  1 23:42 hivemind_bus_client
drwxr-xr-x  2 ovos ovos     137 Jul  1 23:42 hivemind_bus_client-0.0.3a2.egg-info
drwxr-xr-x  3 ovos ovos      63 Jul  1 23:42 hivemind_cli_terminal
drwxr-xr-x  3 ovos ovos     155 Jul  1 23:42 hivemind_core
drwxr-xr-x  2 ovos ovos     161 Jul  1 23:42 jarbas_hive_mind-0.13.0a1.egg-info
ovos@ovos-kitchen-0:~$ 

trying to run hivemind-cli:

$ hivemind-cli 
Traceback (most recent call last):
  File "/home/ovos/.venv/bin/hivemind-cli", line 33, in <module>
    sys.exit(load_entry_point('HiveMind-cli==0.5.0a1', 'console_scripts', 'hivemind-cli')())
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ovos/.venv/bin/hivemind-cli", line 25, in importlib_load_entry_point
    return next(matches).load()
           ^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.11/importlib/metadata/__init__.py", line 202, in load
    module = import_module(match.group('module'))
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.11/importlib/__init__.py", line 126, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "<frozen importlib._bootstrap>", line 1206, in _gcd_import
  File "<frozen importlib._bootstrap>", line 1178, in _find_and_load
  File "<frozen importlib._bootstrap>", line 1149, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 690, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 940, in exec_module
  File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
  File "/home/ovos/.venv/lib/python3.11/site-packages/hivemind_cli_terminal/__main__.py", line 1, in <module>
    from hivemind_presence import LocalDiscovery
ModuleNotFoundError: No module named 'hivemind_presence'

importing manually:

$ python
Python 3.11.2 (main, Mar 13 2023, 12:18:29) [GCC 12.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from hivemind_presence import LocalDiscovery
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'hivemind_presence'
>>> from HiveMind_presence import LocalDiscovery
>>> 
Ramblurr added a commit to Ramblurr/HiveMind-presence that referenced this issue Sep 12, 2023
@Ramblurr Ramblurr linked a pull request Sep 12, 2023 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant