I'm on Ubuntu 22.04, using python 3.11.9. I'm in a conda environment that is active. From pip show neo4j:
Name: neo4j Version: 4.4.3 Summary: Neo4j Bolt driver for Python Home-page: GitHub - neo4j/neo4j-python-driver: Neo4j Bolt driver for Python Author: Neo4j, Inc. Author-email: drivers@neo4j.com License: Apache License, Version 2.0 Location: /home/zwar/.local/lib/python3.10/site-packages Requires: pytz
I then enter a python console and try to import neo4j:
python Python 3.11.9 (main, Apr 19 2024, 16:48:06) [GCC 11.2.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import neo4j Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'neo4j'
I have also installed neo4j-driver and neobolt. I have read the other discussions on this topic but none have been helpful to resolve the issue. Any help would be great. I thought this would be the simple part, I must be missing something.