Skip to content

Commit

Permalink
Merge pull request #1286 from white-gecko/feature/addDocuAboutLocalIn…
Browse files Browse the repository at this point in the history
…stall

Add notes about how to install from git
  • Loading branch information
nicholascar committed Apr 10, 2021
2 parents d717cef + 69e5e26 commit 4503405
Showing 1 changed file with 13 additions and 0 deletions.
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

0 comments on commit 4503405

Please sign in to comment.