I am following this tutorial https://lucasklassmann.com/blog/2019-02-02-how-to-embeddeding-lua-in-c/#installation and I was wondering how I could get the following libraries installed on ubuntu:
#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>
I tried installing all sorts of lua-related things, like:
sudo apt-get install liblua5.1-0-dev
sudo apt-get install lua-devel
But I still could not get things to work. Does anyone know how to get lua working for C?