virtual environment

This commit is contained in:
Robert Bendun 2024-04-17 20:57:09 +02:00
parent b1bc00e10a
commit 3d2610360c
3 changed files with 18 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
__pycache__
exchange.bin
*.swp
.venv

View File

@ -1,3 +1,19 @@
# Inicjalizacja
1. Stwórz wirtualne środowisko: `python -m venv .venv`
2. Aktywuj: `. .venv/bin/activate`
3. Pobierz zależności: `pip install -r requirements.txt'
4. Uruchom projekt: `python main.py`
Aby wyjść ze środowiska uruchom komendę `deactivate`.
## Dodawanie paczek
W środowisku wirtualnym:
1. Zainstaluj paczkę: `pip install <package>`
2. Zaktualizuj listę zależności: `pip freeze > requirements.txt`
# Rekomendowane parametry/komponenty
## Punkt _a_ w dokumencie projektu

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
pycryptodome==3.20.0