Skip to content

Commit b738197

Browse files
committed
Remove spoiner and place in main text
1 parent 988598f commit b738197

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

episodes/12-virtual-environments.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -494,8 +494,6 @@ Once again, we can use `pip` to install our local package:
494494
python3 -m pip install --editable .
495495
```
496496

497-
::::::::::::::::::::::::::::::::::::::::: spoiler
498-
499497
If the above command fails for you - your `pip` installation is older than version 21.3.
500498
Such older versions of `pip` do not support `pyproject.toml` as the package metadata.
501499
Given these versions of `pip` are now over 4 years old, we strongly recommend that you update `pip` if you can with:
@@ -504,8 +502,6 @@ Given these versions of `pip` are now over 4 years old, we strongly recommend th
504502
python3 -m pip install --upgrade pip
505503
```
506504

507-
:::::::::::::::::::::::::::::::::::::::::
508-
509505
This is similar syntax to above, with two important differences:
510506

511507
1. The `--editable` or `-e` flag indicates that the package we are specifying should be an "editable" install.
@@ -515,7 +511,6 @@ This is similar syntax to above, with two important differences:
515511
The `pyproject.toml` file located in this directory then handles the rest.
516512

517513

518-
519514
If we reissue the `pip list` command we should now see our local package with the name `python-intermediate-inflammation` in the output:
520515

521516
```output

0 commit comments

Comments
 (0)