-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Docs] Add Python Virtual Environment Setup Guide. (#373)
- Loading branch information
Showing
3 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,6 @@ | |
|
||
# Clangd cache | ||
.cache | ||
|
||
# Clangd configurations | ||
.clangd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.