Skip to content

Commit 03dda58

Browse files
committed
Fix wording around creating a new vs activating an existing virt. env.
1 parent ea8b124 commit 03dda58

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

episodes/13-ides.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -236,17 +236,14 @@ and has added these libraries effectively replicating our virtual environment in
236236

237237
![](fig/pycharm-installed-packages.png){alt='Packages Currently Installed in a Virtual Environment in PyCharm' .image-with-shadow width="800px"}
238238

239-
Also note that, although the names are not the same -
240-
this is one and the same virtual environment
241-
and changes done to it in PyCharm will propagate to the command line and vice versa.
239+
Also note that, although the names are not the same - this is one and the same virtual environment and changes done to it in PyCharm will propagate to the command line and vice versa.
242240

243241

244242
### VS Code
245243

246-
As in the episode on virtual environments for software development, we want to create a virtual
247-
environment for our project to work in. From the top menu, select `Terminal > New Terminal` to open a
248-
new command line terminal for your project, and run the following command to activate your existing
249-
virtual environment in this terminal:
244+
As covered in the episode on virtual environments for software development, we want to create a new or activate an existing virtual environment for our project to work in.
245+
Since we have already created a virtual environment, we just need to activate it within a terminal environment in VS Code.
246+
To do so, from the top menu select `Terminal > New Terminal` to open a new command line terminal for your project, and run the following command to activate your existing virtual environment in this terminal:
250247

251248
```bash
252249
source ./venv/bin/activate

0 commit comments

Comments
 (0)