Skip to content

Commit 3b87eca

Browse files
authored
Merge pull request #56 from josemoracard/jose1-README
fixed commands, text README
2 parents b3d24db + e2ac839 commit 3b87eca

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
lines changed

README.es.md

+9-7
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,25 @@ Puedes empezar estos ejercicios en pocos segundos haciendo clic en: [Abrir en Co
3131
3232
## Instalación local:
3333

34-
1) Asegúrate de instalar [LearnPack](https://learnpack.co), node.js version 14+ y Python version 3+. Este es el comando para instalar LearnPack:
34+
1. Asegúrate de instalar [LearnPack](https://learnpack.co), node.js version 14+ y Python version 3+. Este es el comando para instalar LearnPack:
3535

3636
```bash
37-
$ npm i learnpack -g && learnpack plugins:install learnpack-python
37+
$ npm i -g @learnpack/learnpack@2.1.20 && learnpack plugins:install @learnpack/python@1.0.0
3838
```
3939

40-
2) Clona o descarga este repositorio. Una vez que termines de descargar, encontrarás una carpeta nueva con un subdirectorio llamado "exercises" que contiene los ejercicios.
40+
2. Clona o descarga este repositorio en tu ambiente local.
4141

4242
```bash
4343
$ git clone https://github.com/4GeeksAcademy/python-functions-programming-exercises.git
44+
$ cd python-functions-programming-exercises
4445
```
4546

46-
3) Comienza el tutorial/ejercicios ejecutando el siguiente comando en la raíz del proyecto:
47+
> Nota: Una vez que termine de descargar, encontrarás la carpeta "exercises" que contiene todos los ejercicios.
48+
49+
3. Comienza el tutorial/ejercicios ejecutando el siguiente comando en la raíz del proyecto:
4750

4851
```bash
49-
$ cd python-functions-programming-exercises
50-
$ pip install pytest==4.4.2 mock pytest-testdox
52+
$ pip3 install pytest==6.2.5 pytest-testdox mock
5153
$ learnpack start
5254
```
5355

@@ -67,7 +69,7 @@ Cada ejercicio es un pequeño proyecto en Python que contiene los siguientes arc
6769

6870
Gracias a estas personas maravillosas ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):
6971

70-
1. [Alejandro Sanchez (alesanchezr)](https://github.com/alesanchezr), contribución: (programador) 💻, (idea) 🤔, (build-tests) ⚠️, (pull-request-review) 🤓, (build-tutorial) ✅, (documentación) 📖
72+
1. [Alejandro Sanchez (alesanchezr)](https://github.com/alesanchezr), contribución: (programador) 💻, (idea) 🤔, (build-tests) ⚠️, (pull-request-review) 👀, (build-tutorial) ✅, (documentación) 📖
7173

7274
2. [Paolo (plucodev)](https://github.com/plucodev), contribución: (bug reports) 🐛, (programador) 💻, (traducción) 🌎
7375

README.md

+9-7
Original file line numberDiff line numberDiff line change
@@ -34,31 +34,33 @@ You can open these exercises in just a few seconds by clicking: [Open in Codespa
3434
3535
## Local Installation
3636

37-
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:
37+
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:
3838

3939
```bash
40-
$ npm i learnpack -g && learnpack plugins:install learnpack-python
40+
$ npm i -g @learnpack/learnpack@2.1.20 && learnpack plugins:install @learnpack/python@1.0.0
4141
```
4242

43-
2) Clone or download this repository. Once you finish downloading, you will find a new folder with a subdirectory called "exercises" that contains all the exercises within.
43+
2. Clone or download this repository in your local environment.
4444

4545
```bash
4646
$ git clone https://github.com/4GeeksAcademy/python-functions-programming-exercises.git
47+
$ cd python-functions-programming-exercises
4748
```
4849

49-
3) Start the tutorial/exercises by running the following command from the root of the project:
50+
> Note: Once you finish downloading, you will find an "exercises" folder that contains all the exercises within.
51+
52+
3. Start the tutorial/exercises by running the following command from the root of the project:
5053

5154
```bash
52-
$ cd python-functions-programming-exercises
53-
$ pip install pytest==4.4.2 mock pytest-testdox
55+
$ pip3 install pytest==6.2.5 pytest-testdox mock
5456
$ learnpack start
5557
```
5658

5759
<!-- endhide -->
5860

5961
## How are the exercises organized?
6062

61-
Each exercise is a small React application containing the following files:
63+
Each exercise is a small Python application containing the following files:
6264

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

0 commit comments

Comments
 (0)