Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 22 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,54 +110,54 @@ The quickest way to get started is to run `pip install llm-vm` in your Python en
Another way to install the LLM-VM is to clone this repository and install it with pip like so:

```bash
> git clone https://github.com/anarchy-ai/LLM-VM.git
> cd LLM-VM
> ./setup.sh
git clone https://github.com/anarchy-ai/LLM-VM.git
cd LLM-VM
./setup.sh
```

The above bash script `setup.sh` only works for MacOS and Linux.

Alternatively you could do this:

```bash
> git clone https://github.com/anarchy-ai/LLM-VM.git
> cd LLM-VM
> python -m venv <name>
> source <name>/bin/activate
> python -m pip install -e ."[dev]"
git clone https://github.com/anarchy-ai/LLM-VM.git
cd LLM-VM
python -m venv <name>
source <name>/bin/activate
python -m pip install -e ."[dev]"
```

If you are on Windows. You can follow either of the below two methods:

Before doing any of the following steps, you have to first open Powershell as administrator and run the below command

```cmd
> Set-ExecutionPolicy RemoteSigned
> Press Y and enter
> exit
Set-ExecutionPolicy RemoteSigned
Press Y and enter
exit
```

Now you can follow either of the below two methods:

1. Open Powershell and do this:

```cmd
> git clone https://github.com/anarchy-ai/LLM-VM.git
> cd LLM-VM
> .\windows_setup.ps1
git clone https://github.com/anarchy-ai/LLM-VM.git
cd LLM-VM
.\windows_setup.ps1
```
or

2. Open Powershell and do this:

```cmd
> winget install Python.Python.3.11
> python --version
> git clone https://github.com/anarchy-ai/LLM-VM.git
> cd LLM-VM
> python -m venv anarchyai
> anarchyai\Scripts\activate
> python -m pip install -e .
winget install Python.Python.3.11
python --version
git clone https://github.com/anarchy-ai/LLM-VM.git
cd LLM-VM
python -m venv anarchyai
anarchyai\Scripts\activate
python -m pip install -e .
```
**Note**:
1. For the above steps to work you have to be on Windows 10 1709 (build 16299) or later build.
Expand Down Expand Up @@ -303,4 +303,4 @@ We offer bounties for closing specific tickets! Look at the ticket labels to see

## License

[MIT License](LICENSE)
[MIT License](LICENSE)