You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running from gemini_core import data, engine, helpers results in:
from gemini_core import data, engine, helpers
ModuleNotFoundError: No module named 'gemini_core'
When I run pip3 list I can see: gemini 1.0.6
If I try to import from just gemini I get the error: cannot import name 'data' from 'gemini' (/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/gemini/__init__.py)
Edit:
I fixed this by looking through the commits by importing like this instead: from gemini.gemini_core import data, engine, helpers
Maybe the readme is incorrect? Also I see the last commit updated the example, and just fyi the link to that on the readme is a 404. Excited to use Gemini, thanks!
The text was updated successfully, but these errors were encountered:
Tried on:
Mac M1 w/ Big Sur and Windows 10, both gave the same error.
Installed via:
pip3 install git+git://github.com/anfederico/gemini.git
Running
from gemini_core import data, engine, helpers
results in:When I run
pip3 list
I can see:gemini 1.0.6
If I try to import from just
gemini
I get the error:cannot import name 'data' from 'gemini' (/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/gemini/__init__.py)
Edit:
I fixed this by looking through the commits by importing like this instead:
from gemini.gemini_core import data, engine, helpers
Maybe the readme is incorrect? Also I see the last commit updated the example, and just fyi the link to that on the readme is a 404. Excited to use Gemini, thanks!
The text was updated successfully, but these errors were encountered: