Skip to content

Commit efe3271

Browse files
committed
Adds PPA and python-venv installation to Linux and windows.
1 parent fdbc6b1 commit efe3271

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

installing-python-linux.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ On different Linux systems, there are a couple of different ways to install and
4040
$ sudo add-apt-repository ppa:deadsnakes/ppa
4141
$ sudo apt-get update
4242
$ sudo apt-get install python3.7
43+
$ sudo apt-get install python3.7-venv
4344
```
4445

4546
On Debian, we'll just have to `sudo apt-get install python3` and hope for the best. Also note that this might install a different version of Python 3.7 (e.g. Python 3.7.1), but we won't worry about that here.

installing-python-windows.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,10 @@ One quick note here: Your Windows file system is located at `/mnt/c` in the Bash
2828
Once you're in the `bash` shell, you can follow the [Linux](https://github.com/stanfordpython/python-handouts/blob/master/installing-python-linux.md) guide, which has more details. If you're just getting started, you may also need to run the following commands:
2929

3030
```
31+
$ sudo add-apt-repository ppa:deadsnakes/ppa
3132
$ sudo apt-get update
32-
$ sudo apt-get install python3
33+
$ sudo apt-get install python3.7
34+
$ sudo apt-get install python3.7-venv
3335
```
3436

3537
You can check which version of Python you've installed by running:

0 commit comments

Comments
 (0)