18 lines
266 B
Markdown
18 lines
266 B
Markdown
# Cryptanalysis
|
|
|
|
## Setup the environments
|
|
You may to create your virtualenv:
|
|
|
|
```
|
|
$ virtualenv ~/venv/cryptanalysis
|
|
$ source ~/venv/cryptanalysis/bin/active
|
|
```
|
|
|
|
And you must install the packages for using the project:
|
|
|
|
```
|
|
$ pip3 install -r requirements.txt
|
|
```
|
|
|
|
|