From 3b1c2964ed5f827022107581ebd485a76f84b38b Mon Sep 17 00:00:00 2001 From: Charles-Meldhine Madi Mnemoi <63333367+cmnemoi@users.noreply.github.com> Date: Wed, 29 Nov 2023 16:41:30 +0100 Subject: [PATCH] docs: Update README with the base tools way to install dependencies (#21) --- README.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4b8330c..d553e05 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,13 @@ The package will be published on PyPI at each push to the `main` branch through # Install the package +## With base tools +```bash +python3.11 venv .venv +source .venv/bin/activate +pip install -r requirements.txt +``` + ## pyenv and poetry ```bash pyenv install 3.11 @@ -39,6 +46,12 @@ cd cmnemoi-learn Then install dependencies. +```bash +python3.11 venv .venv +source .venv/bin/activate +pip install -r requirements-dev.txt +``` + If you run Poetry and pyenv: ```bash pyenv install 3.11 @@ -55,4 +68,4 @@ pip install -r requirements-dev.txt # License -[MIT License](LICENSE.md) \ No newline at end of file +The source code of this project is available under [MIT License](LICENSE.md)