This commit is contained in:
Timothy Jaeryang Baek 2024-12-08 21:51:35 -08:00
parent 7126e3a9fa
commit c971f63561
4 changed files with 19 additions and 39 deletions

View File

@ -16,8 +16,8 @@ import DockerUpdating from './tab-docker/DockerUpdating.md';
import Helm from './tab-kubernetes/Helm.md';
import Kustomize from './tab-kubernetes/Kustomize.md';
import Venv from './tab-python/Venv.md';
import CondaUnix from './tab-python/CondaUnix.md';
import CondaWindows from './tab-python/CondaWindows.md';
import Conda from './tab-python/Conda.md';
import PythonUpdating from './tab-python/PythonUpdating.md';
<TopBanners />
@ -74,23 +74,17 @@ Choose your preferred installation method below:
<Tabs>
<TabItem value="conda" label="Conda">
<div className='mt-5'>
<div className='text-lg font-semibold mb-1'>Choose Your Platform</div>
<Tabs groupId="platform-conda">
<TabItem value="unix-conda" label="Linux/macOS">
<CondaUnix />
</TabItem>
<TabItem value="windows-conda" label="Windows">
<CondaWindows />
</TabItem>
</Tabs>
<Conda />
</div>
<PythonUpdating />
</TabItem>
<TabItem value="venv" label="Venv">
<div className='mt-5'>
<Venv />
</div>
<PythonUpdating />
</TabItem>
@ -102,6 +96,8 @@ Choose your preferred installation method below:
</p>
</div>
</TabItem>
</Tabs>
</TabItem>

View File

@ -1,27 +0,0 @@
# Install with Conda
1. **Create a Conda Environment:**
```bash
conda create -n open-webui python=3.11
```
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
```

View File

@ -0,0 +1,11 @@
## Updating
To update your locally installed **Open-WebUI** package to the latest version using `pip`, follow these simple steps:
```bash
pip install -U open-webui
```
The `-U` (or `--upgrade`) flag ensures that `pip` upgrades the package to the latest available version.
That's it! Your **Open-WebUI** package is now updated and ready to use.