Skip to content
This repository was archived by the owner on Jul 15, 2024. It is now read-only.
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
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,17 @@ source paios/.venv/bin/activate
python3 -m paios
```

_Windows_
_Windows (PowerShell)_

```sh
python .\paios\scripts\setup_environment.py (only on first run)
.\paios\.venv\Scripts\Activate.ps1
python -m paios
```
**_NOTE:_** It may be necessary to set the Windows execution policy; the following command sets the policy to "Unrestricted" for the current PowerShell session only:
```sh
Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope Process
```

Visit [http://localhost:3080/](http://localhost:3080/)

Expand All @@ -54,12 +58,12 @@ git clone https://github.com/Kwaai-AI-Lab/paios.git
Build the frontend:

```sh
cd frontend
cd paios/frontend
npm run build
cd ..
```

Run the uvicorn server:
Run the uvicorn server from the virtual environment:

```sh
python -m paios
Expand Down