You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Install the application to `$PREFIX/opt/kolosal-code`.
40
+
- Create a `kolosal` command in `$PREFIX/bin`.
41
+
42
+
## Usage
43
+
44
+
Run the CLI:
45
+
```bash
46
+
kolosal
47
+
```
48
+
49
+
Check version:
50
+
```bash
51
+
kolosal --version
52
+
```
53
+
54
+
Get help:
55
+
```bash
56
+
kolosal --help
57
+
```
58
+
59
+
## Troubleshooting
60
+
61
+
### "Cannot find module 'tiktoken'"
62
+
If you see an error about missing modules, ensure you are using the latest `install-termux.sh` which includes a fix to copy external dependencies correctly. Run the installer again:
63
+
```bash
64
+
bash install-termux.sh
65
+
```
66
+
67
+
### "Permission denied" or "Command not found"
68
+
Ensure you are running the script with `bash`:
69
+
```bash
70
+
bash install-termux.sh
71
+
```
72
+
### "Permission denied" or "Command not found"
73
+
Ensure you are running the script with `bash` as instructed, not `sh` or directly (`./install-termux.sh`).
74
+
```bash
75
+
bash install-termux.sh
76
+
```
77
+
78
+
### Node.js Warnings
79
+
You might see some warnings during `npm install` or execution. These are usually harmless as long as the installation completes and `kolosal --version` works.
0 commit comments