snapshot current state before gitea sync
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user