Logan
Logan

Reputation: 53142

Is it possible to use Vapor web framework with Swift 2.2?

How can I install Vapor on Ubuntu 14, and install it locally to use the latest Swift release?

Upvotes: 2

Views: 427

Answers (1)

tanner0101
tanner0101

Reputation: 4065

EDIT:

The latest Vapor (v0.14) only support Swift 3.0. You can visit the docs for instructions on how to install:

http://docs.qutheory.io

For Vapor v0.3 and prior:

Yes, Vapor officially supports Swift 2.2 and Swift 3.0.

To install on Linux, paste the following commands into your terminal:

git clone https://github.com/qutheory/vapor
cd vapor
git checkout swift-2-2
sudo make install

After you do that, you will have access to the vapor command line interface.

Run vapor help to see the available commands.

Visit Getting Started in the Vapor Wiki to learn more about installing Vapor.

Upvotes: 6

Related Questions