Installing the Vapor Toolbox on Ubuntu 16.04

I am using Ubuntu 16.04 and have problems after installing the Vapor Toolbox installation guide. I used swiftenv as described in the manual and installed the Swift version of Ubuntu 15.10, but when trying to install the toolbar results are as follows:

$ curl -sL toolbox.vapor.sh | bash ✅ Compatible Downloading... Compiling... <unknown>:0: error: build had 1 command failures error: exit(1): /home/william/.swiftenv/versions/DEVELOPMENT-SNAPSHOT-2016-09-06-a/usr/bin/swift-build-tool -f /home/william/workspace/.vapor-toolbox-0.10.2/vapor-toolbox/.build/release.yaml Installing... bash: line 24: .build/release/Executable: No such file or directory Use vapor --help and vapor <command> --help to learn more. 

Attempting a "pair" results in:

 $ vapor vapor: command not found 
+6
source share
1 answer

This should be allowed in the latest version of the toolkit.

Install with

 brew install vapor/tap/toolbox 

or

 curl -sL toolbox.vapor.sh | bash 
0
source

All Articles