@@ -117,35 +117,37 @@ For more details see the **User Guide** in the [**doc** directory](https://githu
117
117
118
118
*** Note that this has changed for version 1.6. There are now a couple extra steps.***
119
119
120
- A standard operating system install will probably include these already:
121
120
122
- - git
123
- - gcc or clang compiler
124
- - make
121
+ First you will need to install some software development packages using different commands depending on your flavor of Linux.
122
+ In most cases, the first few will already be there and the package installer will tell you that installation is not necessary.
125
123
126
- You will probably need to install additional packages:
127
-
128
- On Debian / Ubuntu / Raspbian:
124
+ On Debian / Ubuntu / Raspbian / Raspberry Pi OS:
129
125
126
+ sudo apt-get install git
127
+ sudo apt-get install gcc
128
+ sudo apt-get install g++
129
+ sudo apt-get install make
130
130
sudo apt-get install cmake
131
131
sudo apt-get install libasound2-dev
132
132
sudo apt-get install libudev-dev
133
133
134
- Or on Red Hat / Fedora / Centos:
134
+ Or on Red Hat / Fedora / CentOS:
135
+
136
+ sudo yum install git
137
+ sudo yum install gcc
138
+ sudo yum install gcc-c++
139
+ sudo yum install make
140
+ sudo yum install alsa-lib-devel
141
+ sudo yum install libudev-devel
135
142
136
143
CentOS 6 & 7 currently have cmake 2.8 but we need 3.1 or later.
137
- First you need to enable the EPEL repository. Add a symlink if you want to type cmake rather than cmake3.
144
+ First you need to enable the EPEL repository. Add a symlink if you don't already have the older version and want to type cmake rather than cmake3.
138
145
139
- sudo yum install epel-release
146
+ sudo yum install epel-release
140
147
sudo rpm -e cmake
141
148
sudo yum install cmake3
142
149
sudo ln -s /usr/bin/cmake3 /usr/bin/cmake
143
150
144
- Continue with the other required packages:
145
-
146
- sudo yum install alsa-lib-devel
147
- sudo yum install libudev-devel
148
-
149
151
Then on any flavor of Linux:
150
152
151
153
cd ~
0 commit comments