Skip to content

Commit d05c08c

Browse files
author
Kenneth Reitz
committed
Adding $ back in
realpython#46
1 parent 6a4ed7a commit d05c08c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/starting/dev-env.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ PyCharm / IntelliJ IDEA
7979
Eclipse
8080
-------
8181

82-
The most popular Eclipse plugin for Python development is Aptana's
82+
The most popular Eclipse plugin for Python development is Aptana's
8383
`PyDev <http://pydev.org>`_.
8484

8585

@@ -88,7 +88,7 @@ Komodo IDE
8888
`Komodo IDE <http://www.activestate.com/komodo-ide>`_ is developed by ActiveState and is a commerical IDE for Windows, Mac
8989
and Linux.
9090

91-
Spyder
91+
Spyder
9292
------
9393

9494
`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
176176

177177
::
178178

179-
pip freeze > requirements.txt
179+
$ pip freeze > requirements.txt
180180

181181
This will create a ``requirements.txt`` file, which contains a simple
182182
list of all the packages in the current environment, and their respective
@@ -186,7 +186,7 @@ versions by running
186186

187187
::
188188

189-
pip install -r requirements.txt
189+
$ pip install -r requirements.txt
190190

191191
This can help ensure consistency across installations, across deployments,
192192
and across developers.
@@ -201,14 +201,14 @@ virtualenvwrapper
201201

202202
::
203203

204-
pip install virtualenvwrapper
204+
$ pip install virtualenvwrapper
205205

206206

207207
Put this into your `~/.bash_profile` (Linux/Mac) file:
208208

209209
::
210210

211-
export VIRTUALENVWRAPPER_VIRTUALENV_ARGS='--no-site-packages'
211+
$ export VIRTUALENVWRAPPER_VIRTUALENV_ARGS='--no-site-packages'
212212

213213
This will prevent your virtualenvs from relying on your (global) site packages directory, so that they are completely separate..
214214

@@ -228,7 +228,7 @@ IPython
228228

229229
::
230230

231-
pip install ipython
231+
$ pip install ipython
232232

233233

234234

@@ -237,6 +237,6 @@ BPython
237237

238238
::
239239

240-
pip install bpython
240+
$ pip install bpython
241241

242242

0 commit comments

Comments
 (0)