From 90f9b972fada3f8ad50a014b9da9d3ea7844cf67 Mon Sep 17 00:00:00 2001 From: Marcelo Jorge Vieira Date: Fri, 4 Feb 2022 20:22:49 -0300 Subject: [PATCH] CONTRIBUTING: Fixed typo Replaced 'enviroment' with 'environment' --- CONTRIBUTING.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index bede23a61..9cfdea673 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -32,21 +32,21 @@ Other than that, we seriously advise you to use your environment clean of thumbor's dependencies and you can choose when to "turn them on". -The project requires Python 3.7+, and in this version virtualenv is already installed by default, to create a virtual enviroment follow the next steps: +The project requires Python 3.7+, and in this version virtualenv is already installed by default, to create a virtual environment follow the next steps: -1. Create a virtual enviroment, in the folder .venv, located in the user's home folder +1. Create a virtual environment, in the folder .venv, located in the user's home folder ``` -$ python3 -m venv ~/.venv/ +$ python3 -m venv ~/.venv/ ``` -2. Activate the virtual enviroment +2. Activate the virtual environment ``` $ source ~/.venv//bin/activate ``` -3. Now you can install the dependencies in your virtual enviroment -4. In case you want deactivate your virtual enviroment: +3. Now you can install the dependencies in your virtual environment +4. In case you want deactivate your virtual environment: ``` $ deactivate ```