neo4j-contrib / py2neo

EOL! Py2neo is a comprehensive Neo4j driver library and toolkit for Python.
https://py2neo.org
Apache License 2.0
20 stars 8 forks source link

Can't install from Git Master #328

Closed dangayle closed 10 years ago

dangayle commented 10 years ago

Setup.py still lists py2neo.packages.urimagic as a dependency, but that dependency no longer exists. Which means that you can't install from master. Here's the error:


$ pip install -e git+git@github.com:nigelsmall/py2neo@master#egg=py2neo
Obtaining py2neo from git+git@github.com:nigelsmall/py2neo@master#egg=py2neo
  Updating ./env/src/py2neo clone (to master)
  Running setup.py (path:/Users/dang/code/neo4j/neo/env/src/py2neo/setup.py) egg_info for package py2neo

    error: package directory 'py2neo/packages/urimagic' does not exist
    Complete output from command python setup.py egg_info:
    running egg_info

writing dependency_links to py2neo.egg-info/dependency_links.txt

writing py2neo.egg-info/PKG-INFO

writing top-level names to py2neo.egg-info/top_level.txt

warning: manifest_maker: standard file '-c' not found

running egg_info

writing dependency_links to py2neo.egg-info/dependency_links.txt

writing py2neo.egg-info/PKG-INFO

writing top-level names to py2neo.egg-info/top_level.txt

warning: manifest_maker: standard file '-c' not found

error: package directory 'py2neo/packages/urimagic' does not exist

----------------------------------------
Cleaning up...
Command python setup.py egg_info failed with error code 1 in /Users/dang/code/neo4j/neo/env/src/py2neo
Storing debug log for failure in /Users/dang/.pip/pip.log
technige commented 10 years ago

Do not install from master, that is work-in-progress and not yet stable code. Install from release/1.6.4 or PyPI.

dangayle commented 10 years ago

The issue is that all your docs refer to the new code with the neo4j.Graph class, and not what you can install from PyPI. Do you have versioned documentation anywhere?

On Aug 5, 2014, at 10:42 PM, Nigel Small notifications@github.com wrote:

Do not install from master, that is work-in-progress and not yet stable code. Install from release/1.6.4 or PyPI.

— Reply to this email directly or view it on GitHub.

technige commented 10 years ago

Ah, you're right. The published documentation looks broken. Thanks for highlighting this, I'll get it fixed. On 6 Aug 2014 07:28, "Dan Gayle" notifications@github.com wrote:

The issue is that all your docs refer to the new code with the neo4j.Graph class, and not what you can install from PyPI. Do you have versioned documentation anywhere?

On Aug 5, 2014, at 10:42 PM, Nigel Small notifications@github.com wrote:

Do not install from master, that is work-in-progress and not yet stable code. Install from release/1.6.4 or PyPI.

— Reply to this email directly or view it on GitHub.

— Reply to this email directly or view it on GitHub https://github.com/nigelsmall/py2neo/issues/328#issuecomment-51298313.

dangayle commented 10 years ago

Cool, thanks. I'm really excited to use it. I've been wanting to use graph dbs for a long time in Python, and your app looks perfect :)

On Aug 5, 2014, at 11:31 PM, Nigel Small notifications@github.com wrote:

Ah, you're right. The published documentation looks broken. Thanks for highlighting this, I'll get it fixed. On 6 Aug 2014 07:28, "Dan Gayle" notifications@github.com wrote:

The issue is that all your docs refer to the new code with the neo4j.Graph class, and not what you can install from PyPI. Do you have versioned documentation anywhere?

On Aug 5, 2014, at 10:42 PM, Nigel Small notifications@github.com wrote:

Do not install from master, that is work-in-progress and not yet stable code. Install from release/1.6.4 or PyPI.

— Reply to this email directly or view it on GitHub.

— Reply to this email directly or view it on GitHub https://github.com/nigelsmall/py2neo/issues/328#issuecomment-51298313.

— Reply to this email directly or view it on GitHub.

technige commented 10 years ago

Docs are now fixed.

http://nigelsmall.com/py2neo/1.6/

dangayle commented 10 years ago

Fantastic. Thanks.