File tree 3 files changed +20
-7
lines changed
3 files changed +20
-7
lines changed Original file line number Diff line number Diff line change @@ -44,12 +44,17 @@ The cli sets up the following for AgentGPT:
44
44
- 🤖 [ Backend] ( https://github.com/reworkd/AgentGPT/tree/main/platform ) (FastAPI)
45
45
- 🎨 [ Frontend] ( https://github.com/reworkd/AgentGPT/tree/main/next ) (Nextjs)
46
46
47
- To get started follow run the commands below.
47
+ - You will need node intalled, you can check by running 'node -v' or install [ node] ( https://nodejs.org/en/download )
48
+
49
+ To get started on Mac/Linux, run the commands below.
48
50
``` bash
49
51
git clone https://github.com/reworkd/AgentGPT.git && cd AgentGPT
50
52
./setup.sh
51
53
```
52
-
54
+ If you are on windows, you can do the following after downloading the repo.
55
+ ```
56
+ setup.bat
57
+ ```
53
58
> 🐳 The recommend way to set up AgentGPT locally is to [ docker-compose] ( https://www.docker.com/ ) , please make sure you have docker installed.
54
59
55
60
## 🎉 Roadmap
Original file line number Diff line number Diff line change @@ -15,19 +15,20 @@ The following document will help you set up a local installation of AgentGPT.
15
15
## Interactive Setup
16
16
17
17
We've recently launched an interactive setup tool that will guide you through creating an ENV and running AgentGPT.
18
- Simply run the following:
18
+
19
+ - You will need node intalled you can check by running 'node -v' or install [ node] ( https://nodejs.org/en/download )
20
+
21
+ Simply run the following on a unix system:
19
22
20
23
```
21
24
git clone https://github.com/reworkd/AgentGPT.git && cd AgentGPT
22
25
./setup.sh
23
26
```
24
27
25
- If you are on windows, you can do the following after downloading the repo
28
+ If you are on windows, you can do the following after downloading the repo:
26
29
27
30
```
28
- cd cli
29
- npm install
30
- npm run start
31
+ setup.bat
31
32
```
32
33
33
34
Going this route, you can ignore the below text.
Original file line number Diff line number Diff line change
1
+ @ echo off
2
+ setlocal
3
+
4
+ rem The CLI will take care of setting up the ENV variables
5
+ cd cli || exit /b 1
6
+ call npm install
7
+ npm run start
You can’t perform that action at this time.
0 commit comments