diff options
author | Yigit Sever | 2019-09-20 16:48:22 +0300 |
---|---|---|
committer | Yigit Sever | 2019-09-20 16:48:22 +0300 |
commit | 198159724bf82fd4417eb3db895f11e58348fcc3 (patch) | |
tree | 52a41454adcff12f078f100867c0202f370f799b | |
parent | 286c84133e2b9f8688e8590006824ab3a985b2b9 (diff) | |
parent | 1608af7608c427332e2f6af27368df4b7dffde88 (diff) | |
download | Evaluating-Dictionary-Alignment-198159724bf82fd4417eb3db895f11e58348fcc3.tar.gz Evaluating-Dictionary-Alignment-198159724bf82fd4417eb3db895f11e58348fcc3.tar.bz2 Evaluating-Dictionary-Alignment-198159724bf82fd4417eb3db895f11e58348fcc3.zip |
Merge branch 'master' of github.com:yigitsever/Evaluating-Dictionary-Alignment
-rw-r--r-- | README.md | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -33,18 +33,15 @@ python -m venv evaluating | |||
33 | source ~/.env/evaluating/bin/activate | 33 | source ~/.env/evaluating/bin/activate |
34 | ``` | 34 | ``` |
35 | 35 | ||
36 | Inside the virtual environment, the python interpreter and the installed packages are isolated. | 36 | After 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. |
37 | In order to install all dependencies automatically use the [pip](https://pypi.org/project/pip/) package installer; | 37 | In 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 | ||
40 | pip install -r requirements.txt | 41 | pip install -r requirements.txt |
41 | ``` | 42 | ``` |
42 | 43 | ||
43 | After done with the environment run; | 44 | Rest of this README assumes that you are in the repository root directory. |
44 | |||
45 | ```bash | ||
46 | deactivate | ||
47 | ``` | ||
48 | 45 | ||
49 | </p> | 46 | </p> |
50 | </details> | 47 | </details> |