Skip to content

Commit

Permalink
Merge pull request #1266 from okineadev/update-docs
Browse files Browse the repository at this point in the history
Updated installation scripts
  • Loading branch information
KillianLucas committed May 15, 2024
2 parents 8902eb3 + a6ed3c1 commit 8e61e35
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions docs/getting-started/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ To try our experimental installers, open your Terminal with admin priviledges [(
<CodeGroup>

```bash Mac
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
curl -sL https://raw.githubusercontent.com/KillianLucas/open-interpreter/main/installers/oi-mac-installer.sh | bash
```

```bash Windows
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
```powershell Windows
iex "& {$(irm https://raw.githubusercontent.com/KillianLucas/open-interpreter/main/installers/oi-windows-installer.ps1)}"
```

```bash Linux
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
curl -sL https://raw.githubusercontent.com/KillianLucas/open-interpreter/main/installers/oi-linux-installer.sh | bash
```

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

<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>
<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>

## Python usage

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

## No Installation

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.
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 comments on commit 8e61e35

Please sign in to comment.