@chahuadev/chahuadev-hub-app 3.0.0 → 3.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +34 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,6 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
8
|
<img src="https://huggingface.co/datasets/chahuadev/chahuadev-hub/resolve/main/chahuadev-hub.png" width="600" alt="Chahuadev Hub">
|
|
9
|
+
<img src="https://huggingface.co/datasets/chahuadev/chahuadev-png/resolve/main/chahuadev-hub.png" width="600" alt="Chahuadev Hub">
|
|
10
|
+
|
|
11
|
+
<img src="https://huggingface.co/datasets/chahuadev/chahuadev-png/resolve/main/chahuadev-hub.png" width="600" alt="Chahuadev Hub">
|
|
9
12
|
</p>
|
|
10
13
|
|
|
11
14
|
<p align="center">
|
|
@@ -59,7 +62,37 @@ chahuadev-hub
|
|
|
59
62
|
|
|
60
63
|
---
|
|
61
64
|
|
|
62
|
-
##
|
|
65
|
+
## � Running the AppImage on Linux / WSL2 (Ubuntu)
|
|
66
|
+
|
|
67
|
+
First install the required system libraries (one-time setup):
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
sudo apt-get update && sudo apt-get install -y \
|
|
71
|
+
libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2 \
|
|
72
|
+
libdrm2 libxkbcommon0 libxcomposite1 libxdamage1 \
|
|
73
|
+
libxrandr2 libgbm1 libasound2
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
Then run the AppImage:
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
chmod +x "Chahuadev-Hub.AppImage"
|
|
80
|
+
DISPLAY=:0 WAYLAND_DISPLAY=wayland-0 \
|
|
81
|
+
./"Chahuadev-Hub.AppImage" \
|
|
82
|
+
--appimage-extract-and-run --no-sandbox --disable-gpu
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
> **WSL2 tip:** Copy to WSL native filesystem first:
|
|
86
|
+
> ```bash
|
|
87
|
+
> cp "/mnt/d/path/to/Chahuadev-Hub.AppImage" /tmp/ChahuadevHub.AppImage
|
|
88
|
+
> chmod +x /tmp/ChahuadevHub.AppImage
|
|
89
|
+
> DISPLAY=:0 WAYLAND_DISPLAY=wayland-0 /tmp/ChahuadevHub.AppImage \
|
|
90
|
+
> --appimage-extract-and-run --no-sandbox --disable-gpu
|
|
91
|
+
> ```
|
|
92
|
+
|
|
93
|
+
---
|
|
94
|
+
|
|
95
|
+
## �🛠️ Troubleshooting
|
|
63
96
|
|
|
64
97
|
### `node\r: No such file or directory` (Linux)
|
|
65
98
|
|