You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/starting/dev-env.rst
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@ PyCharm / IntelliJ IDEA
79
79
Eclipse
80
80
-------
81
81
82
-
The most popular Eclipse plugin for Python development is Aptana's
82
+
The most popular Eclipse plugin for Python development is Aptana's
83
83
`PyDev <http://pydev.org>`_.
84
84
85
85
@@ -88,7 +88,7 @@ Komodo IDE
88
88
`Komodo IDE <http://www.activestate.com/komodo-ide>`_ is developed by ActiveState and is a commerical IDE for Windows, Mac
89
89
and Linux.
90
90
91
-
Spyder
91
+
Spyder
92
92
------
93
93
94
94
`Spyder <http://code.google.com/p/spyderlib/>`_ an IDE specifically geared toward working with scientific python libraries (namely `Scipy <http://www.scipy.org/>`_).
@@ -176,7 +176,7 @@ the current state of the environment packages. To do this, run
176
176
177
177
::
178
178
179
-
pip freeze > requirements.txt
179
+
$ pip freeze > requirements.txt
180
180
181
181
This will create a ``requirements.txt`` file, which contains a simple
182
182
list of all the packages in the current environment, and their respective
@@ -186,7 +186,7 @@ versions by running
186
186
187
187
::
188
188
189
-
pip install -r requirements.txt
189
+
$ pip install -r requirements.txt
190
190
191
191
This can help ensure consistency across installations, across deployments,
192
192
and across developers.
@@ -201,14 +201,14 @@ virtualenvwrapper
201
201
202
202
::
203
203
204
-
pip install virtualenvwrapper
204
+
$ pip install virtualenvwrapper
205
205
206
206
207
207
Put this into your `~/.bash_profile` (Linux/Mac) file:
0 commit comments