Skip to content

Commit bf03243

Browse files
committed
Merge pull request #299 from xlz/ubuntu-deps
Fix Ubuntu 14.04 installation issues
2 parents ce025f6 + c6c6c05 commit bf03243

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ git clone https://github.com/OpenKinect/libfreenect2.git
191191
1. Install a bunch of dependencies
192192

193193
```bash
194-
sudo apt-get install build-essential libjpeg-turbo8-dev libtool autoconf libudev-dev cmake mesa-common-dev freeglut3-dev libxrandr-dev doxygen libxi-dev libopencv-dev automake
194+
sudo apt-get install build-essential libturbojpeg libjpeg-turbo8-dev libtool autoconf libudev-dev cmake mesa-common-dev freeglut3-dev libxrandr-dev doxygen libxi-dev libopencv-dev automake
195195
# sudo apt-get install libturbojpeg0-dev (Debian)
196196

197197
cd libfreenect2/depends

depends/install_ubuntu.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ ARCH="$(uname -m | grep -q 64 && echo 'amd64' || echo 'i386')"
88
# download standalone packages for 14.04 LTS
99
wget -N http://archive.ubuntu.com/ubuntu/pool/universe/g/glfw3/libglfw3_3.0.4-1_${ARCH}.deb
1010
wget -N http://archive.ubuntu.com/ubuntu/pool/universe/g/glfw3/libglfw3-dev_3.0.4-1_${ARCH}.deb
11-
wget -N http://archive.ubuntu.com/ubuntu/pool/universe/g/glfw3/libglfw3-doc_3.0.4-1_all.deb
1211

1312
sh ./install_libusb.sh
1413

@@ -17,7 +16,8 @@ cat <<-EOT
1716
Execute the following commands to install the remaining dependencies (if you have not already done so):
1817
1918
sudo dpkg -i libglfw3*_3.0.4-1_*.deb
20-
sudo apt-get install build-essential libjpeg-turbo8-dev libtool autoconf libudev-dev cmake mesa-common-dev freeglut3-dev libxrandr-dev doxygen libxi-dev libopencv-dev automake
19+
sudo apt-get install build-essential libturbojpeg libjpeg-turbo8-dev libtool autoconf libudev-dev cmake mesa-common-dev freeglut3-dev libxrandr-dev doxygen libxi-dev libopencv-dev automake
20+
sudo apt-get install libturbojpeg0-dev # (Debian)
2121
2222
EOT
2323

0 commit comments

Comments
 (0)