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

Add notes about how to install from git #1286

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,19 @@ Index (PyPI) at https://pypi.python.org/pypi/rdflib
The current version of RDFLib is 5.0.0, see the ``CHANGELOG.md``
file for what's new in this release.

### Installation of the current master branch (for developers)

With *pip* you can also install rdflib from the git repository with one of the following options:

$ pip install git+https://github.com/rdflib/rdflib@master
# or
$ pip install -e git+https://github.com/rdflib/rdflib@master#egg=rdflib

or from your locally cloned repository you can install it with one of the following options:

$ python setup.py install
# or
$ pip install -e .

## Getting Started
RDFLib aims to be a pythonic RDF API. RDFLib's main data object is a `Graph` which is a Python collection
Expand Down