19 lines
677 B
Markdown
19 lines
677 B
Markdown
# Installation
|
|
To install the project, you should install from my own Python repository but, you first need to deploy your virtual enviroment.
|
|
|
|
## Installation from source
|
|
You can install from the source. Download the [project](https://gitea.bucchino.org/gbucchino/cryptotools.git) and install it in your virtual environment:
|
|
|
|
```
|
|
$ virtualenv ~/venv/cryptotools
|
|
$ source ~/venv/cryptotools/bin/activate
|
|
```
|
|
|
|
```
|
|
$ git clone https://gitea.bucchino.org/gbucchino/cryptotools.git
|
|
$ cd cryptotools
|
|
$ python3 setup.py install
|
|
```
|
|
|
|
The installation is completed. You can know use Cryptotools package into your project. In the directory `examples` you may find some examples scripts
|