virtual environment
This commit is contained in:
parent
b1bc00e10a
commit
3d2610360c
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
__pycache__
|
__pycache__
|
||||||
exchange.bin
|
exchange.bin
|
||||||
*.swp
|
*.swp
|
||||||
|
.venv
|
||||||
|
16
README.md
16
README.md
@ -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
|
# Rekomendowane parametry/komponenty
|
||||||
|
|
||||||
## Punkt _a_ w dokumencie projektu
|
## Punkt _a_ w dokumencie projektu
|
||||||
|
1
requirements.txt
Normal file
1
requirements.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
pycryptodome==3.20.0
|
Loading…
Reference in New Issue
Block a user