diff --git a/docs/dev/virtualenvs.rst b/docs/dev/virtualenvs.rst index d8d746c..927d213 100644 --- a/docs/dev/virtualenvs.rst +++ b/docs/dev/virtualenvs.rst @@ -8,11 +8,7 @@ projects in separate places, by creating virtual Python environments for them. It solves the "Project X depends on version 1.x but, Project Y needs 4.x" dilemma, and keeps your global site-packages directory clean and manageable. -<<<<<<< HEAD -For example, you can work on a project which requires Django 1.9 while also -======= For example, you can work on a project which requires Django 1.10 while also ->>>>>>> upstream/master maintaining a project which requires Django 1.8. virtualenv diff --git a/docs/starting/install/osx.rst b/docs/starting/install/osx.rst index bc5e539..fe081b3 100644 --- a/docs/starting/install/osx.rst +++ b/docs/starting/install/osx.rst @@ -74,9 +74,6 @@ Now, we can install Python 2.7: $ brew install python -<<<<<<< HEAD -This will take a minute or two. -======= or Python 3: .. code-block:: console @@ -84,7 +81,6 @@ or Python 3: $ brew install python3 This will take a minute or two. ->>>>>>> upstream/master Setuptools and Pip @@ -93,23 +89,13 @@ Setuptools and Pip Homebrew installs Setuptools and ``pip`` for you. Setuptools enables you to download and install any compliant Python -<<<<<<< HEAD - -software over a network (usually the Internet) with a single command - -(``easy_install``). It also enables you to add this network installation - -capability to your own Python software with very little work. - -``pip`` is a tool for easily installing and managing Python packages, that is -recommended over ``easy_install``. It is superior to -``easy_install`` in `several ways -`_, -======= software over a network (usually the Internet) with a single command (``easy_install``). It also enables you to add this network installation capability to your own Python software with very little work. ``pip`` is a tool for easily installing and managing Python packages, -that is recommended over ``easy_install``. It is superior to ``easy_install`` in `several ways `_, ->>>>>>> upstream/master +that is recommended over ``easy_install``. It is superior to ``easy_install`` +in `several ways `_, and is actively maintained. @@ -122,14 +108,8 @@ in separate places, by creating virtual Python environments for them. It solves your global site-packages directory clean and manageable. For example, you can work on a project which requires Django 1.10 while also -<<<<<<< HEAD -maintaining a project which requires Django 1.7. -======= maintaining a project which requires Django 1.8. -To start using this and see more information: :ref:`Virtual Environments ` docs. ->>>>>>> upstream/master - To start using this and see more information: :ref:`Virtual Environments ` docs. --------------------------------