Skip to content

Commit

Permalink
[Docs] Add Python Virtual Environment Setup Guide. (#373)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShiHaoGao authored Aug 27, 2024
1 parent 5e5a6a5 commit 952d558
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@

# Clangd cache
.cache

# Clangd configurations
.clangd
10 changes: 10 additions & 0 deletions docs/PythonEnvironment.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Python Virtual Environment Setup Guide for Buddy-mlir

We recommend you to use anaconda3 to create python virtual environment. You should install python packages as buddy-mlir/requirements.

```bash
$ conda create -n <your virtual environment name> python=3.11
$ conda activate <your virtual environment name>
$ cd buddy-mlir
$ pip install -r requirements.txt
```
File renamed without changes.

0 comments on commit 952d558

Please sign in to comment.