Module06
-
create branch
git branch feature/modul06 -
switch to new branch
git checkout feature/modul06
-
create
python -m venv venv -
Activate https://docs.python.org/uk/3.10/library/venv.html#creating-virtual-environments for macos/linux
source venv/bin/activatefor windowsvenv\Scripts\activate.bat -
Deactivate venv
deactivate -
Show all packeges
pip list -
Install package
pip install colorama -
Delete package
pip uninstall colorama -
Generate file with packeges
pip freeze > requirements.txt -
Install all package from file
pip install -r requirements.txt
https://python-packaging.readthedocs.io/en/latest/minimal.html
https://platform.openai.com/docs/overview
https://packaging.python.org/en/latest/tutorials/packaging-projects/