This repository has been archived on 2026-03-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
datavaultgenerator-1.1.5/README.md

57 lines
676 B
Markdown

# Installationsanleitung
## Bereitstellung Files
```sh
install/DataVaultGenerator-1.0.0.tar.gz
```
## Virtual Environment erstellen und aktivieren
Erstellen:
```sh
python3 -m venv venv
```
Aktivieren:
(Unix)
```sh
source venv/bin/activate
```
(Windows)
```sh
venv\Scripts\activate.bat
```
PIP aktualisieren:
```sh
pip install --upgrade pip
```
## Installation
### Core
Generator:
```sh
pip install install/DataVaultGenerator-1.0.0.tar.gz
```
Abhängigkeiten (nicht mehr nötig):
```sh
pip install -r requirements.txt
```
## Deinstallation
Generator:
```sh
pip uninstall DataVaultGenerator
```
pip freeze > to-uninstall.txt
pip uninstall -r to-uninstall.txt