Skip to main content

Install Lua on Ubuntu

Install Lua on Ubuntu

In this post, We will learn how to install lua programming language on Ubuntu machine.

Install Lua 

Download the lua source&nbsp
 curl -R -O http://www.lua.org/ftp/lua-5.3.5.tar.gz  
Extract the downloaded lua source tar file
 tar zxf lua-5.3.5.tar.gz  
Check compatibility 
 cd lua-5.3.5/
make linux test  
install lua on your machine 
 sudo make linux install

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

Comments