aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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