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/dev/virtualenvs.rst
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -118,7 +118,7 @@ tutorial) and run:
118
118
119
119
.. code-block:: console
120
120
121
-
$ cd myproject
121
+
$ cd project_folder
122
122
$ pipenv install requests
123
123
124
124
Pipenv will install the excellent `Requests`_ library and create a ``Pipfile``
@@ -225,7 +225,7 @@ Basic Usage
225
225
226
226
.. code-block:: console
227
227
228
-
$ cd my_project_folder
228
+
$ cd project_folder
229
229
$ virtualenv venv
230
230
231
231
``virtualenv venv`` will create a folder in the current directory which will
@@ -260,19 +260,19 @@ or change the interpreter globally with an env variable in ``~/.bashrc``:
260
260
$ source venv/bin/activate
261
261
262
262
The name of the current virtual environment will now appear on the left of
263
-
the prompt (e.g. ``(venv)Your-Computer:your_project UserName$)`` to let you know
263
+
the prompt (e.g. ``(venv)Your-Computer:project_folder UserName$)`` to let you know
264
264
that it's active. From now on, any package that you install using pip will be
265
265
placed in the ``venv`` folder, isolated from the global Python installation.
266
266
267
-
For Windows, same command which is mentioned in step 1 can be used for creation of virtual environment. But, to activate, we use the following command.
267
+
For Windows, the same command mentioned in step 1 can be used to create a virtual environment. However, activating the environment requires a slightly different command.
0 commit comments