Skip to content

Commit

Permalink
Merge pull request #203 from naveenarun/naveenarun-readme-conda
Browse files Browse the repository at this point in the history
Add conda instructions to README.md
  • Loading branch information
mivanit authored Jan 28, 2024
2 parents 70d494c + c973442 commit b799a92
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,20 @@ Most of the functionality is demonstrated in the ipython notebooks in the `noteb
* Restart VSCode
* In VSCode, select the python interpreter located in `maze-transformer/.venv/bin` as your juptyer kernel

## Instructions for Conda users

* Create a new Conda environment: `conda create -n mazetransformer python=3.10 poetry`
* Activate the environment: `conda activate mazetransformer`
* Update poetry and install dev dependencies
```
poetry self update
poetry config virtualenvs.in-project true
poetry install --with dev
```
* Run unit, integration, and notebook tests
```
make test
```

## Testing & Static analysis

Expand Down

0 comments on commit b799a92

Please sign in to comment.