Skip to content

Commit b832f66

Browse files
author
Adam Nelson
committed
Previous merge didnt handle 2 conflicts properly
1 parent e7ca528 commit b832f66

File tree

2 files changed

+2
-26
lines changed

2 files changed

+2
-26
lines changed

docs/dev/virtualenvs.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@ projects in separate places, by creating virtual Python environments for them.
88
It solves the "Project X depends on version 1.x but, Project Y needs 4.x"
99
dilemma, and keeps your global site-packages directory clean and manageable.
1010

11-
<<<<<<< HEAD
12-
For example, you can work on a project which requires Django 1.9 while also
13-
=======
1411
For example, you can work on a project which requires Django 1.10 while also
15-
>>>>>>> upstream/master
1612
maintaining a project which requires Django 1.8.
1713

1814
virtualenv

docs/starting/install/osx.rst

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -74,17 +74,13 @@ Now, we can install Python 2.7:
7474
7575
$ brew install python
7676
77-
<<<<<<< HEAD
78-
This will take a minute or two.
79-
=======
8077
or Python 3:
8178

8279
.. code-block:: console
8380
8481
$ brew install python3
8582
8683
This will take a minute or two.
87-
>>>>>>> upstream/master
8884

8985

9086
Setuptools and Pip
@@ -93,23 +89,13 @@ Setuptools and Pip
9389
Homebrew installs Setuptools and ``pip`` for you.
9490

9591
Setuptools enables you to download and install any compliant Python
96-
<<<<<<< HEAD
97-
-software over a network (usually the Internet) with a single command
98-
-(``easy_install``). It also enables you to add this network installation
99-
-capability to your own Python software with very little work.
100-
101-
``pip`` is a tool for easily installing and managing Python packages, that is
102-
recommended over ``easy_install``. It is superior to
103-
``easy_install`` in `several ways
104-
<https://python-packaging-user-guide.readthedocs.org/en/latest/pip_easy_install/#pip-vs-easy-install>`_,
105-
=======
10692
software over a network (usually the Internet) with a single command
10793
(``easy_install``). It also enables you to add this network installation
10894
capability to your own Python software with very little work.
10995

11096
``pip`` is a tool for easily installing and managing Python packages,
111-
that is recommended over ``easy_install``. It is superior to ``easy_install`` in `several ways <https://python-packaging-user-guide.readthedocs.io/pip_easy_install/#pip-vs-easy-install>`_,
112-
>>>>>>> upstream/master
97+
that is recommended over ``easy_install``. It is superior to ``easy_install``
98+
in `several ways <https://python-packaging-user-guide.readthedocs.io/pip_easy_install/#pip-vs-easy-install>`_,
11399
and is actively maintained.
114100

115101

@@ -122,14 +108,8 @@ in separate places, by creating virtual Python environments for them. It solves
122108
your global site-packages directory clean and manageable.
123109

124110
For example, you can work on a project which requires Django 1.10 while also
125-
<<<<<<< HEAD
126-
maintaining a project which requires Django 1.7.
127-
=======
128111
maintaining a project which requires Django 1.8.
129112

130-
To start using this and see more information: :ref:`Virtual Environments <virtualenvironments-ref>` docs.
131-
>>>>>>> upstream/master
132-
133113
To start using this and see more information: :ref:`Virtual Environments <virtualenvironments-ref>` docs.
134114

135115
--------------------------------

0 commit comments

Comments
 (0)