diff --git a/docs/getting-started/quick-start/tab-python/CondaUnix.md b/docs/getting-started/quick-start/tab-python/CondaUnix.md new file mode 100644 index 0000000..556f9a3 --- /dev/null +++ b/docs/getting-started/quick-start/tab-python/CondaUnix.md @@ -0,0 +1,27 @@ + + +# Install with Conda + +1. **Create a Conda Environment:** + + ```bash + conda create -n open-webui python=3.9 + ``` + +2. **Activate the Environment:** + + ```bash + conda activate open-webui + ``` + +3. **Install Open WebUI:** + + ```bash + pip install open-webui + ``` + +4. **Start the Server:** + + ```bash + open-webui serve + ```