diff --git a/docs/installation.rst b/docs/installation.rst --- a/docs/installation.rst +++ b/docs/installation.rst @@ -12,12 +12,23 @@ Using pip In order to install latest stable release of Django Conntrackt using *pip*, use the following command:: + pip install conntrackt In order to install the latest development version of Django Conntrackt from Mercurial repository, use the following command:: - pip install -e hg+https://hg.majic.rs/conntrackt#egg=conntrackt + pip install -e hg+http://code.majic.rs/conntrackt#egg=conntrackt + +.. warning:: + + You will need to update the ``pip`` installation in your virtual environment if you get the following error while running the above command:: + + AttributeError: 'NoneType' object has no attribute 'skip_requirements_regex' + + You can update ``pip`` to latest version with:: + + pip install -U pip After this you should proceed to :ref:`configure your Django installation `. diff --git a/docs/quickstart.rst b/docs/quickstart.rst --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -19,15 +19,21 @@ Create the virtual environment for testi mkvirtualenv conntrackt -Install the latest version of pip (that contains fix for parsing the requirement files):: - - pip install -U pip - Install Django Conntrackt with its requirements:: workon conntrackt pip install -e hg+http://code.majic.rs/conntrackt#egg=conntrackt +.. warning:: + + You will need to update the ``pip`` installation in your virtual environment if you get the following error while running the above command:: + + AttributeError: 'NoneType' object has no attribute 'skip_requirements_regex' + + You can update ``pip`` to latest version with:: + + pip install -U pip + Start a new Django Conntrackt project:: django-admin.py startproject conntrackt_test