Update README.md
Browse files
README.md
CHANGED
|
@@ -26,18 +26,29 @@ If you have Git and Node.js installed, open your terminal (Command Prompt or Pow
|
|
| 26 |
|
| 27 |
`for powershell`
|
| 28 |
```bash
|
| 29 |
-
git clone https://huggingface.co/remiai3/RemiAI_Framework
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
|
|
|
|
|
|
| 35 |
```
|
| 36 |
|
| 37 |
### ⚠️ IMPORTANT: Git LFS Required
|
| 38 |
This repository uses **Git Large File Storage (LFS)** for the AI engine binaries.
|
| 39 |
**If you download the ZIP or clone without LFS, the app will not work (Error: "RemiAI engine missing").**
|
| 40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
---
|
| 42 |
|
| 43 |
## 💻 Manual Installation
|
|
|
|
| 26 |
|
| 27 |
`for powershell`
|
| 28 |
```bash
|
| 29 |
+
git clone https://huggingface.co/remiai3/RemiAI_Framework; cd RemiAI_Framework; git lfs install; git lfs pull; npm install; npm start
|
| 30 |
+
|
| 31 |
+
```
|
| 32 |
+
|
| 33 |
+
`for cmd`
|
| 34 |
+
```bash
|
| 35 |
+
git clone https://huggingface.co/remiai3/RemiAI_Framework && cd RemiAI-App && git lfs install && git lfs pull && npm install && npm start
|
| 36 |
+
|
| 37 |
```
|
| 38 |
|
| 39 |
### ⚠️ IMPORTANT: Git LFS Required
|
| 40 |
This repository uses **Git Large File Storage (LFS)** for the AI engine binaries.
|
| 41 |
**If you download the ZIP or clone without LFS, the app will not work (Error: "RemiAI engine missing").**
|
| 42 |
|
| 43 |
+
**Pack the entire project into .exe file installer**
|
| 44 |
+
Run the command:
|
| 45 |
+
```bash
|
| 46 |
+
npm run dist
|
| 47 |
+
```
|
| 48 |
+
This will create an installer in the `release` folder that you can share with friends!
|
| 49 |
+
|
| 50 |
+
`if you are facing errors while building open the power shell as an administrator and run the above command then it will works 100%`
|
| 51 |
+
|
| 52 |
---
|
| 53 |
|
| 54 |
## 💻 Manual Installation
|