Skip to content

Commit cb18331

Browse files
committed
Fix typo
1 parent 767ddce commit cb18331

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

notebooks/beginner/html/venv.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11800,7 +11800,7 @@
1180011800
<div class="inner_cell">
1180111801
<div class="text_cell_render border-box-sizing rendered_html">
1180211802
<h1 id="Virtual-environment">Virtual environment<a class="anchor-link" href="#Virtual-environment">&#182;</a></h1><p>When working with Python projects, best practice is to have a separate virtual environment for each of them.</p>
11803-
<p>Each virtual environment has its own Python binary. When you install some Python package into your virtual environment, it'll be installed only into that specific environment. This means that you can have different versions of a single Python package in different virtual environments on the same machine. Virtual environments are also useful if you need to use different Python versions in your projects.</p>
11803+
<p>Each virtual environment has its own Python binary. When you install some Python package into your virtual environment, it'll be installed only into that specific environment. This means that you can have different versions of a single Python package in different virtual environments in the same machine. Virtual environments are also useful if you need to use different Python versions in your projects.</p>
1180411804

1180511805
</div>
1180611806
</div>

notebooks/beginner/venv.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"# Virtual environment\n",
88
"When working with Python projects, best practice is to have a separate virtual environment for each of them. \n",
99
"\n",
10-
"Each virtual environment has its own Python binary. When you install some Python package into your virtual environment, it'll be installed only into that specific environment. This means that you can have different versions of a single Python package in different virtual environments on the same machine. Virtual environments are also useful if you need to use different Python versions in your projects."
10+
"Each virtual environment has its own Python binary. When you install some Python package into your virtual environment, it'll be installed only into that specific environment. This means that you can have different versions of a single Python package in different virtual environments in the same machine. Virtual environments are also useful if you need to use different Python versions in your projects."
1111
]
1212
},
1313
{

0 commit comments

Comments
 (0)