Skip to content

Commit 8e61e35

Browse files
authored
Merge pull request #1266 from okineadev/update-docs
Updated installation scripts
2 parents 8902eb3 + a6ed3c1 commit 8e61e35

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

docs/getting-started/setup.mdx

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ To try our experimental installers, open your Terminal with admin priviledges [(
99
<CodeGroup>
1010

1111
```bash Mac
12-
curl -o oi-mac-installer.sh https://raw.githubusercontent.com/KillianLucas/open-interpreter/main/installers/oi-mac-installer.sh && chmod +x oi-mac-installer.sh && ./oi-mac-installer.sh && rm oi-mac-installer.sh
12+
curl -sL https://raw.githubusercontent.com/KillianLucas/open-interpreter/main/installers/oi-mac-installer.sh | bash
1313
```
1414

15-
```bash Windows
16-
curl -o oi-windows-installer.ps1 https://raw.githubusercontent.com/KillianLucas/open-interpreter/main/installers/oi-windows-installer.ps1 || bitsadmin /transfer "DownloadScript" https://raw.githubusercontent.com/KillianLucas/open-interpreter/main/installers/oi-windows-installer.ps1 %CD%\oi-windows-installer.ps1 && powershell -ExecutionPolicy Bypass -File oi-windows-installer.ps1 && del oi-windows-installer.ps1
15+
```powershell Windows
16+
iex "& {$(irm https://raw.githubusercontent.com/KillianLucas/open-interpreter/main/installers/oi-windows-installer.ps1)}"
1717
```
1818

1919
```bash Linux
20-
curl -o oi-linux-installer.sh https://raw.githubusercontent.com/KillianLucas/open-interpreter/main/installers/oi-linux-installer.sh && chmod +x oi-linux-installer.sh && ./oi-linux-installer.sh && rm oi-linux-installer.sh
20+
curl -sL https://raw.githubusercontent.com/KillianLucas/open-interpreter/main/installers/oi-linux-installer.sh | bash
2121
```
2222

2323
</CodeGroup>
@@ -40,7 +40,12 @@ If you already use Python, we recommend installing Open Interpreter via `pip`:
4040
pip install open-interpreter
4141
```
4242

43-
<Info>**Note:** You'll need Python [3.10](https://www.python.org/downloads/release/python-3100/) or [3.11](https://www.python.org/downloads/release/python-3110/). Run `python --version` to check yours.</Info>
43+
<Info>
44+
**Note:** You'll need Python
45+
[3.10](https://www.python.org/downloads/release/python-3100/) or
46+
[3.11](https://www.python.org/downloads/release/python-3110/). Run `python
47+
--version` to check yours.
48+
</Info>
4449

4550
## Python usage
4651

@@ -62,4 +67,4 @@ interpreter.chat("Get the last 5 BBC news headlines.")
6267

6368
## No Installation
6469

65-
If configuring your computer environment is challenging, you can press the `,` key on this repository's GitHub page to create a codespace. After a moment, you'll receive a cloud virtual machine environment pre-installed with open-interpreter. You can then start interacting with it directly and freely confirm its execution of system commands without worrying about damaging the system.
70+
If configuring your computer environment is challenging, you can press the `,` key on this repository's GitHub page to create a codespace. After a moment, you'll receive a cloud virtual machine environment pre-installed with open-interpreter. You can then start interacting with it directly and freely confirm its execution of system commands without worrying about damaging the system.

0 commit comments

Comments
 (0)