aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 4 insertions, 7 deletions
diff --git a/README.md b/README.md
index 8acf541..2360df4 100644
--- a/README.md
+++ b/README.md
@@ -33,18 +33,15 @@ python -m venv evaluating
33source ~/.env/evaluating/bin/activate 33source ~/.env/evaluating/bin/activate
34``` 34```
35 35
36Inside the virtual environment, the python interpreter and the installed packages are isolated. 36After the virtual environment is activated, the python interpreter and the installed packages are isolated. In order for our code to work, the correct environment has to be sourced/activated.
37In order to install all dependencies automatically use the [pip](https://pypi.org/project/pip/) package installer; 37In order to install all dependencies automatically use the [pip](https://pypi.org/project/pip/) package installer using `requirements.txt`, which resides under the repository directory.
38 38
39```bash 39```bash
40# under Evaluating-Dictionary-Alignment
40pip install -r requirements.txt 41pip install -r requirements.txt
41``` 42```
42 43
43After done with the environment run; 44Rest of this README assumes that you are in the repository root directory.
44
45```bash
46deactivate
47```
48 45
49</p> 46</p>
50</details> 47</details>