Skip to content

Commit e7f79ca

Browse files
committed
chore: remove install.sh script and documentation references
- Delete docs/static/install.sh (broken installer causing issues) - Remove One-Line Installer section from linux.md documentation - Remove install.sh references from installation/_index.en.md - Remove install.sh warning and commands from README.md Closes mudler#8032
1 parent 0ee9231 commit e7f79ca

4 files changed

Lines changed: 4 additions & 994 deletions

File tree

README.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -93,16 +93,7 @@ Liking LocalAI? LocalAI is part of an integrated suite of AI infrastructure tool
9393

9494
## 💻 Quickstart
9595

96-
> ⚠️ **Note:** The `install.sh` script is currently experiencing issues due to the heavy changes currently undergoing in LocalAI and may produce broken or misconfigured installations. Please use Docker installation (see below) or manual binary installation until [issue #8032](https://github.com/mudler/LocalAI/issues/8032) is resolved.
9796

98-
Run the installer script:
99-
100-
```bash
101-
# Basic installation
102-
curl https://localai.io/install.sh | sh
103-
```
104-
105-
For more installation options, see [Installer Options](https://localai.io/installation/).
10697

10798
### macOS Download:
10899

docs/content/installation/_index.en.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ LocalAI can be installed in multiple ways depending on your platform and prefere
1212
**Recommended: Docker Installation**
1313

1414
**Docker is the recommended installation method** for most users as it works across all platforms (Linux, macOS, Windows) and provides the easiest setup experience. It's the fastest way to get started with LocalAI.
15-
{{% /notice %}}
15+
{{% /notice %}
1616

1717
## Installation Methods
1818

1919
Choose the installation method that best suits your needs:
2020

2121
1. **[Docker](docker/)****Recommended** - Works on all platforms, easiest setup
2222
2. **[macOS](macos/)** - Download and install the DMG application
23-
3. **[Linux](linux/)** - Install on Linux using binaries (install.sh script currently has issues - see [issue #8032](https://github.com/mudler/LocalAI/issues/8032))
23+
3. **[Linux](linux/)** - Install on Linux using binaries
2424
4. **[Kubernetes](kubernetes/)** - Deploy LocalAI on Kubernetes clusters
2525
5. **[Build from Source](build/)** - Build LocalAI from source code
2626

@@ -36,6 +36,6 @@ This will start LocalAI. The API will be available at `http://localhost:8080`. F
3636

3737
For other platforms:
3838
- **macOS**: Download the [DMG](macos/)
39-
- **Linux**: See the [Linux installation guide](linux/) for installation options. **Note:** The `install.sh` script is currently experiencing issues - see [issue #8032](https://github.com/mudler/LocalAI/issues/8032) for details.
39+
- **Linux**: See the [Linux installation guide](linux/) for binary installation.
4040

4141
For detailed instructions, see the [Docker installation guide](docker/).

docs/content/installation/linux.md

Lines changed: 1 addition & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,10 @@
11
---
22
title: "Linux Installation"
3-
description: "Install LocalAI on Linux using the installer script or binaries"
3+
description: "Install LocalAI on Linux using binaries"
44
weight: 3
55
url: '/installation/linux/'
66
---
77

8-
9-
## One-Line Installer
10-
11-
{{% notice warning %}}
12-
**The `install.sh` script is currently experiencing issues and may produce broken or misconfigured installations. Please use alternative installation methods (Docker or manual binary installation) until [issue #8032](https://github.com/mudler/LocalAI/issues/8032) is resolved.**
13-
{{% /notice %}}
14-
15-
The fastest way to install LocalAI on Linux is with the installation script:
16-
17-
```bash
18-
curl https://localai.io/install.sh | sh
19-
```
20-
21-
This script will:
22-
- Detect your system architecture
23-
- Download the appropriate LocalAI binary
24-
- Set up the necessary configuration
25-
- Start LocalAI automatically
26-
27-
### Installer Configuration Options
28-
29-
The installer can be configured using environment variables:
30-
31-
```bash
32-
curl https://localai.io/install.sh | VAR=value sh
33-
```
34-
35-
#### Environment Variables
36-
37-
| Environment Variable | Description |
38-
|----------------------|-------------|
39-
| **DOCKER_INSTALL** | Set to `"true"` to enable the installation of Docker images |
40-
| **USE_AIO** | Set to `"true"` to use the all-in-one LocalAI Docker image |
41-
| **USE_VULKAN** | Set to `"true"` to use Vulkan GPU support |
42-
| **API_KEY** | Specify an API key for accessing LocalAI, if required |
43-
| **PORT** | Specifies the port on which LocalAI will run (default is 8080) |
44-
| **THREADS** | Number of processor threads the application should use. Defaults to the number of logical cores minus one |
45-
| **VERSION** | Specifies the version of LocalAI to install. Defaults to the latest available version |
46-
| **MODELS_PATH** | Directory path where LocalAI models are stored (default is `/var/lib/local-ai/models`) |
47-
| **P2P_TOKEN** | Token to use for the federation or for starting workers. See [distributed inferencing documentation]({{%relref "features/distributed_inferencing" %}}) |
48-
| **WORKER** | Set to `"true"` to make the instance a worker (p2p token is required) |
49-
| **FEDERATED** | Set to `"true"` to share the instance with the federation (p2p token is required) |
50-
| **FEDERATED_SERVER** | Set to `"true"` to run the instance as a federation server which forwards requests to the federation (p2p token is required) |
51-
52-
#### Image Selection
53-
54-
The installer will automatically detect your GPU and select the appropriate image. By default, it uses the standard images without extra Python dependencies. You can customize the image selection:
55-
56-
- `USE_AIO=true`: Use all-in-one images that include all dependencies
57-
- `USE_VULKAN=true`: Use Vulkan GPU support instead of vendor-specific GPU support
58-
59-
#### Uninstallation
60-
61-
To uninstall LocalAI installed via the script:
62-
63-
```bash
64-
curl https://localai.io/install.sh | sh -s -- --uninstall
65-
```
66-
678
## Manual Installation
689

6910
### Download Binary

0 commit comments

Comments
 (0)