Compare commits
5 Commits
7d9fc8b6c8
...
493cc90d0f
Author | SHA1 | Date |
---|---|---|
|
493cc90d0f | |
|
9c42993d0c | |
|
ea73f6b890 | |
|
532e7c05ee | |
|
84836932e6 |
|
@ -4,7 +4,7 @@ name: Bug Report
|
||||||
description: File a bug report to help us improve
|
description: File a bug report to help us improve
|
||||||
title: "[Bug]: "
|
title: "[Bug]: "
|
||||||
labels: ["bug", "triage"]
|
labels: ["bug", "triage"]
|
||||||
assignees: []
|
assignees: []
|
||||||
body:
|
body:
|
||||||
- type: markdown
|
- type: markdown
|
||||||
attributes:
|
attributes:
|
||||||
|
@ -53,7 +53,7 @@ body:
|
||||||
- CPU Only
|
- CPU Only
|
||||||
- Not Applicable
|
- Not Applicable
|
||||||
validations:
|
validations:
|
||||||
required: false # Make optional as not all issues might be GPU related
|
required: false
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: logs
|
id: logs
|
||||||
attributes:
|
attributes:
|
||||||
|
@ -64,7 +64,7 @@ body:
|
||||||
id: terms
|
id: terms
|
||||||
attributes:
|
attributes:
|
||||||
label: Code of Conduct
|
label: Code of Conduct
|
||||||
description: By submitting this issue, you agree to follow our [Code of Conduct](link/to/code_of_conduct.md) <!-- Replace with actual link if you have one -->
|
description: By submitting this issue, you agree to follow our [Collaboration Guidelines](CONTRIBUTING.md)
|
||||||
options:
|
options:
|
||||||
- label: I agree to follow this project's Code of Conduct
|
- label: I agree to follow this project's Collaboration Guidelines
|
||||||
required: true
|
required: true
|
||||||
|
|
|
@ -133,12 +133,20 @@ Place these files in the "**models**" folder.
|
||||||
|
|
||||||
We highly recommend using a `venv` to avoid issues.
|
We highly recommend using a `venv` to avoid issues.
|
||||||
|
|
||||||
|
|
||||||
For Windows:
|
For Windows:
|
||||||
```bash
|
```bash
|
||||||
python -m venv venv
|
python -m venv venv
|
||||||
venv\Scripts\activate
|
venv\Scripts\activate
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
```
|
```
|
||||||
|
For Linux:
|
||||||
|
```bash
|
||||||
|
# Ensure you use the installed Python 3.10
|
||||||
|
python3 -m venv venv
|
||||||
|
source venv/bin/activate
|
||||||
|
pip install -r requirements.txt
|
||||||
|
```
|
||||||
|
|
||||||
**For macOS:**
|
**For macOS:**
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue