Skip to content

Commit

Permalink
docs: Update README with the base tools way to install dependencies (#21
Browse files Browse the repository at this point in the history
)
  • Loading branch information
cmnemoi authored Nov 29, 2023
1 parent 37ada74 commit 3b1c296
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -55,4 +68,4 @@ pip install -r requirements-dev.txt

# License

[MIT License](LICENSE.md)
The source code of this project is available under [MIT License](LICENSE.md)

0 comments on commit 3b1c296

Please sign in to comment.