Last active
May 20, 2022 15:11
-
-
Save Ismoh/207306470aebc9d67fd2a1c680f670ae to your computer and use it in GitHub Desktop.
Install lua5.1 and rocks on windows wsl1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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