Skip to content

Commit 9a94c92

Browse files
authored
Update README.md
1 parent 8536057 commit 9a94c92

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

README.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,16 @@ You can open these exercises in just a few seconds by clicking: [Open in Codespa
2525
2626
## Local Installation
2727

28-
1. Install learnpack, the package manager for learning tutorials and the html compiler plugin for learnpack, make sure you also have node.js 14+:
28+
1. Make sure you have [LearnPack](https://learnpack.co) installed, node.js version 14+, and Python version 3+. This is the command to install LearnPack:
2929

3030
```bash
31-
$ npm i learnpack -g
32-
$ learnpack plugins:install learnpack-python
31+
npm i @learnpack/learnpack@2.1.20 -g && learnpack plugins:install @learnpack/python@1.0.0
3332
```
3433

35-
2. Download this particular tutorial using learnpack and `cd` into the folder:
34+
2. Clone or download this repository in your local environment.
3635

3736
```bash
38-
$ learnpack download master-python-programming-exercises
37+
$ git clone https://github.com/4GeeksAcademy/master-python-programming-exercises.git
3938
$ cd master-python-programming-exercises
4039
```
4140

@@ -44,15 +43,15 @@ $ cd master-python-programming-exercises
4443
3. Start the tutorial/exercises by running the following command at the same level your learn.json file is:
4544

4645
```bash
47-
$ RUN pip3 install pytest==4.4.2 pytest-testdox mock
46+
$ pip3 install pytest==6.2.5 pytest-testdox mock
4847
$ learnpack start
4948
```
5049

5150
<!-- endhide -->
5251

5352
## How are the exercises organized?
5453

55-
Each exercise is a small React application containing the following files:
54+
Each exercise is a small Python application containing the following files:
5655

5756
1. **app.py:** represents the entry Python file that will be executed by the computer.
5857
2. **README.md:** contains exercise instructions.

0 commit comments

Comments
 (0)