aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorcongusbongus <congusbongus@gmail.com>2025-11-08 11:39:26 +1100
committerHisham Muhammad <hisham@gobolinux.org>2026-01-28 12:05:30 -0300
commit2dc04f0531dac3b968ab5e8847c43e19db7c3efd (patch)
tree62817f6615830dfefdd3fd338446b27fe58ca5ab /docs
parent834412707161dabd548a2dbb0cfcf76050364214 (diff)
downloadluarocks-2dc04f0531dac3b968ab5e8847c43e19db7c3efd.tar.gz
luarocks-2dc04f0531dac3b968ab5e8847c43e19db7c3efd.tar.bz2
luarocks-2dc04f0531dac3b968ab5e8847c43e19db7c3efd.zip
Remove extra chars in front of console commands
This allows copy pasting the commands easily
Diffstat (limited to 'docs')
-rw-r--r--docs/installation_instructions_for_unix.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/installation_instructions_for_unix.md b/docs/installation_instructions_for_unix.md
index cdcdf64b..4d17a711 100644
--- a/docs/installation_instructions_for_unix.md
+++ b/docs/installation_instructions_for_unix.md
@@ -13,13 +13,13 @@ otherwise run the command below to install them.
13For Ubuntu/Debian systems, this should do it: 13For Ubuntu/Debian systems, this should do it:
14 14
15``` 15```
16-$ sudo apt install build-essential libreadline-dev unzip 16sudo apt install build-essential libreadline-dev unzip
17``` 17```
18 18
19For Yum-based distributions, try this: 19For Yum-based distributions, try this:
20 20
21``` 21```
22-$ sudo yum install libtermcap-devel ncurses-devel libevent-devel readline-devel 22sudo yum install libtermcap-devel ncurses-devel libevent-devel readline-devel
23``` 23```
24 24
25Then, to get Lua, either install it using your package manager of choice, or 25Then, to get Lua, either install it using your package manager of choice, or
@@ -31,8 +31,8 @@ Then, to get Lua, either install it using your package manager of choice, or
31* To build and install Lua, run the following commands. 31* To build and install Lua, run the following commands.
32 32
33``` 33```
34-$ make all test 34make all test
35-$ sudo make install 35sudo make install
36``` 36```
37 37
38Once Lua and its dependencies are installed, it is time to install LuaRocks: 38Once Lua and its dependencies are installed, it is time to install LuaRocks:
@@ -44,9 +44,9 @@ Once Lua and its dependencies are installed, it is time to install LuaRocks:
44* To configure, build and install LuaRocks, run the following commands. The `./configure` script will attempt to detect your installation of Lua. If you get any error messages, see the section "[Customizing your settings](#customizing-your-settings)", below. 44* To configure, build and install LuaRocks, run the following commands. The `./configure` script will attempt to detect your installation of Lua. If you get any error messages, see the section "[Customizing your settings](#customizing-your-settings)", below.
45 45
46``` 46```
47-$ ./configure --with-lua-include=/usr/local/include 47./configure --with-lua-include=/usr/local/include
48-$ make 48make
49-$ sudo make install 49sudo make install
50``` 50```
51 51
52Installation should be done! Run `luarocks` with no arguments to 52Installation should be done! Run `luarocks` with no arguments to