# Install on Linux To use Vapor, you will need Swift 5.9 or greater. This can be installed using the CLI tool [Swiftly](https://swiftlang.github.io/swiftly/) provided by the Swift Server Workgroup (recommended), or the toolchains available on [Swift.org](https://swift.org/download/). ## Supported Distributions and Versions Vapor supports the same versions of Linux distributions that Swift 5.9 or newer versions supports. Please refer to the [official support page](https://www.swift.org/platform-support/) in order to find updated information about which operating systems are officially supported. Linux distributions not officially supported may also run Swift by compiling the source code, but Vapor cannot prove stability. Learn more about compiling Swift from the [Swift repo](https://github.com/apple/swift#getting-started). ## Install Swift ### Automated installation using Swiftly CLI tool (recommended) Visit the [Swiflty website](https://swiftlang.github.io/swiftly/) for instructions on how to install Swiftly and Swift on Linux. After that, install Swift with the following command: #### Basic usage ```sh $ swiftly install latest Fetching the latest stable Swift release... Installing Swift 5.9.1 Downloaded 488.5 MiB of 488.5 MiB Extracting toolchain... Swift 5.9.1 installed successfully! $ swift --version Swift version 5.9.1 (swift-5.9.1-RELEASE) Target: x86_64-unknown-linux-gnu ``` ### Manual installation with the toolchain Visit Swift.org's [Using Downloads](https://swift.org/download/#using-downloads) guide for instructions on how to install Swift on Linux. ### Fedora Fedora users can simply use the following command to install Swift: ```sh sudo dnf install swift-lang ``` If you're using Fedora 35, you'll need to add EPEL 8 to get Swift 5.9 or newer versions. ## Docker You can also use Swift's official Docker images which come with the compiler preinstalled. Learn more at [Swift's Docker Hub](https://hub.docker.com/_/swift). ## Install Toolbox Now that you have Swift installed, let's install the [Vapor Toolbox](https://github.com/vapor/toolbox). This CLI tool is not required to use Vapor, but it includes helpful utilities. On Linux, you will need to build the toolbox from source. View the toolbox's releases on GitHub to find the latest version. ```sh git clone https://github.com/vapor/toolbox.git cd toolbox git checkout make install ``` Double check the installation was successful by printing help. ```sh vapor --help ``` You should see a list of available commands. ## Next After you have installed Swift, create your first app in [Getting Started → Hello, world](../getting-started/hello-world.md).