mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 17:23:12 +02:00
git-subtree-dir: Programming/PORR git-subtree-mainline:9576b25315git-subtree-split:0a62d75a82
24 lines
312 B
Markdown
24 lines
312 B
Markdown
cd code
|
|
|
|
pyenv init
|
|
|
|
COPY AND PASTE PYENV CONFIGURATION TO YOUR SHELL CONFIG
|
|
|
|
source ~/.zshrc (or your shell)
|
|
|
|
pyenv install 3.11
|
|
|
|
pyenv global 3.11
|
|
|
|
Ensure that python DID change its version
|
|
|
|
python --version
|
|
|
|
python -m venv ./venv
|
|
|
|
source ./venv/bin/activate
|
|
|
|
pip install -r requirements.txt
|
|
|
|
python main.py
|