repo used to learn how to do a rag
-
Install pyenv to manage your Python versions and virtual environments:
curl -sSL https://pyenv.run | bash- If you are on MacOS and experiencing errors on python install with pyenv, follow this comment
- Add these lines to your
~/.bashrcor~/.zshrcto be able to activatepyenv virtualenv:eval "$(pyenv init -)" eval "$(pyenv virtualenv-init -)" eval "$(pyenv init --path)"
- Restart your shell
-
Install the right version of
Pythonwithpyenv:pyenv install 3.11.6
- Install Poetry to manage your dependencies and tooling configs:
If you have not previously installed any Python version, you may need to set your global Python version before installing Poetry:
curl -sSL https://install.python-poetry.org | python - --version 1.7.0pyenv global 3.11.6
-
Create a
pyenvvirtual environment and link it to your project folder:pyenv virtualenv 3.11.6 rag-initiator pyenv local rag-initiatorNow, every time you are in your project directory your virtualenv will be activated!
-
Install dependencies with
Poetry:poetry install --no-root
Steps 1. and 2. can also be done in one command:
make installpoetry run pre-commit installTo run unit tests, run pytest with:
pytest tests --cov srcor
make testTo check code formatting, run ruff format with:
ruff format --check .or
make format-checkYou can also integrate it to your IDE to reformat your code each time you save a file.
To run static analysis, run ruff with:
ruff check src testsor
make lint-checkTo run static analysis and to apply auto-fixes, run ruff with:
make lint-fixTo type check your code, run mypy with:
mypy src --explicit-package-bases --namespace-packagesor
make type-check