Doug Smith
Doug Smith

Reputation: 29316

Installing Lua 5.2.1 on Mac OS X Mountain Lion

I tried to use the following command:

curl -R -O http://www.lua.org/ftp/lua-5.2.0.tar.gz
tar zxf lua-5.2.0.tar.gz
cd lua-5.2.0
make macosx test install

(But with 5.2.1 obviously)

But it says it doesn't know the command make.

Upvotes: 0

Views: 718

Answers (1)

Shoe
Shoe

Reputation: 76240

You need to install XCode in order to have the make command. Then go to: Preferences and then Downloads and install a component named "Command Line Tools". Finally run Install Xcode.app from your Applications folder.

Upvotes: 4

Related Questions