Skip to content

Commit 7e633c9

Browse files
committed
Reference virtual environment instead of virtualenv
1 parent 5fbf51e commit 7e633c9

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

source/tutorials/installing-packages.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ This will create a new virtual environment in the ``tutorial_env`` subdirectory,
189189
and configure the current shell to use it as the default ``python`` environment.
190190

191191

192-
.. _`Creating and using Virtual Environments`:
192+
.. _Creating and using Virtual Environments:
193193

194194
Creating Virtual Environments
195195
=============================

source/tutorials/packaging-projects.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -516,8 +516,8 @@ Installing your newly uploaded package
516516
--------------------------------------
517517

518518
You can use :ref:`pip` to install your package and verify that it works.
519-
Create a new :ref:`virtualenv` (see :doc:`/tutorials/installing-packages` for
520-
detailed instructions) and install your package from TestPyPI:
519+
Create a :ref:`virtual environment <Creating and using Virtual Environments>`
520+
and install your package from TestPyPI:
521521

522522
.. tab:: Unix/macOS
523523

@@ -551,19 +551,19 @@ something like this:
551551
installing dependencies when using TestPyPI.
552552

553553
You can test that it was installed correctly by importing the package.
554-
Run the Python interpreter (make sure you're still in your virtualenv):
554+
Make sure you're still in your virtual environment, then run Python:
555555

556556
.. tab:: Unix/macOS
557557

558558
.. code-block:: bash
559559
560-
python3
560+
python3
561561
562562
.. tab:: Windows
563563

564564
.. code-block:: bash
565565
566-
py
566+
py
567567
568568
and import the package:
569569

0 commit comments

Comments
 (0)