新增 Service:PicoClaw
@@ -0,0 +1,43 @@
|
|||||||
|
# 安裝語言套件
|
||||||
|
|
||||||
|
## Go
|
||||||
|
|
||||||
|
```bash
|
||||||
|
wget https://go.dev/dl/go1.26.2.linux-amd64.tar.gz && tar -C /usr/local -xzf go1.26.2.linux-amd64.tar.gz
|
||||||
|
```
|
||||||
|
|
||||||
|
```bash
|
||||||
|
echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.bashrc && source ~/.bashrc && go version
|
||||||
|
```
|
||||||
|
|
||||||
|
## NodeJS
|
||||||
|
|
||||||
|
```bash
|
||||||
|
apt update && apt install -y nodejs npm
|
||||||
|
```
|
||||||
|
|
||||||
|
# 安裝相依套件
|
||||||
|
|
||||||
|
```bash
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
# 下載原始碼
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone https://github.com/sipeed/picoclaw.git
|
||||||
|
```
|
||||||
|
|
||||||
|
# 編譯原始碼
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd ~/picoclaw && make deps
|
||||||
|
```
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd ~/picoclaw/web/frontend && corepack install
|
||||||
|
```
|
||||||
|
|
||||||
|
```bash
|
||||||
|
|
||||||
|
```
|
||||||
Reference in New Issue
Block a user