krios
krios

Reputation: 1

Why is Swift build command only available in development?

I'm learning Swift now, and I found out that the swift build command is available only in the development version of Swift.

So when I invoke

swift build 

...it returns:

swift build unable to invoke subcommand.

Can someone explain why?

In another answer I found the above command, but why is it only available in the development version?

Upvotes: 0

Views: 108

Answers (1)

Karl Weinmeister
Karl Weinmeister

Reputation: 507

Swift Package Manager is included with Swift 3.0 and above. You should be able to use it now with the released versions that are included with Xcode 8 or downloadable on swift.org.

Upvotes: 1

Related Questions