Skip to content

Instantly share code, notes, and snippets.

@Ismoh
Last active May 20, 2022 15:11
Show Gist options
  • Save Ismoh/207306470aebc9d67fd2a1c680f670ae to your computer and use it in GitHub Desktop.
Save Ismoh/207306470aebc9d67fd2a1c680f670ae to your computer and use it in GitHub Desktop.
Install lua5.1 and rocks on windows wsl1
# powershell as administrator:
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
wsl --set-default-version 1
wsl --install --distribution Ubuntu
# Ubuntu shell:
# Create a new user by entering username and password
sudo apt-get update
# available lua versions "lua5.1, lua5.2, lua5.3"
sudo apt-get install lua5.1
sudo apt-get install luarocks
# Install luafilesystem as sudo
luarocks install luafilesystem
# Get ubuntus root directory in windows
explorer.exe .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment