Compare commits

...

6 Commits

Author SHA1 Message Date
Aryan Hardik Dani 493cc90d0f
Merge 9c42993d0c into 532e7c05ee 2025-05-03 12:42:12 +05:30
Aryan Hardik Dani 9c42993d0c Update bug report template: clarify GPU backend optionality and update Code of Conduct reference 2025-05-03 12:41:27 +05:30
Aryan Hardik Dani ea73f6b890
Merge branch 'hacksider:main' into premain 2025-05-03 12:29:21 +05:30
Kenneth Estanislao 532e7c05ee
Merge pull request #1155 from killerlux/patch-1
Added commands for linux
2025-05-03 10:16:02 +08:00
killerlux 84836932e6
Added cmomands for linux 2025-04-30 23:09:12 +02:00
Aryan Dani 2c1c567a31 feat: Replace markdown bug report with GitHub issue template 2025-04-30 18:28:17 +05:30
3 changed files with 78 additions and 26 deletions

View File

@ -1,26 +0,0 @@
***[Remove this]The issue would be closed without notice and be considered spam if the template is not followed.***
**Describe the bug**
A clear and concise description of what the bug is.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Error Message**
`<The error message in terminal>`
**Desktop (please complete the following information):**
- OS: [e.g. Windows]
- Version [e.g. 22]
- GPU
- CPU
**Additional context**
Add any other context about the problem here.
**Confirmation (Mandatory)**
- [ ] I have followed the template
- [ ] This is not a query about how to increase performance
- [ ] I have checked the issues page, and this is not a duplicate

View File

@ -0,0 +1,70 @@
# @format
name: Bug Report
description: File a bug report to help us improve
title: "[Bug]: "
labels: ["bug", "triage"]
assignees: []
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Also tell us, what did you expect to happen?
placeholder: Tell us what you see!
value: "A bug happened!"
validations:
required: true
- type: textarea
id: steps-to-reproduce
attributes:
label: Steps to Reproduce
description: Please provide detailed steps to reproduce the behavior.
placeholder: |
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
validations:
required: true
- type: dropdown
id: os
attributes:
label: Operating System
description: What operating system are you using?
options:
- Windows
- macOS
- Linux
validations:
required: true
- type: dropdown
id: gpu-backend
attributes:
label: GPU Backend
description: Which GPU backend were you using (if applicable)?
options:
- CUDA (NVIDIA)
- DirectML (AMD/Intel/NVIDIA)
- CPU Only
- Not Applicable
validations:
required: false
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: shell
- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our [Collaboration Guidelines](CONTRIBUTING.md)
options:
- label: I agree to follow this project's Collaboration Guidelines
required: true

View File

@ -133,12 +133,20 @@ Place these files in the "**models**" folder.
We highly recommend using a `venv` to avoid issues.
For Windows:
```bash
python -m venv venv
venv\Scripts\activate
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:**