Linux+OpenCV3+Python3.5: Difference between revisions
From ICO wiki
Jump to navigationJump to search
Created page with "Python 3.5 brings support for async programming in Python making it possible to use [http://aiohttp.readthedocs.org/en/stable/ async web programming]. These instructions sho..." |
No edit summary |
||
Line 7: | Line 7: | ||
Install Python: | Install Python: | ||
apt-get install python3.5-dev build-essential unzip \ | apt-get install wget python3.5-dev build-essential unzip \ | ||
libjpeg-dev libtiff5-dev libjasper-dev libpng12-dev \ | libjpeg-dev libtiff5-dev libjasper-dev libpng12-dev \ | ||
libavcodec-dev libavformat-dev libswscale-dev libv4l-dev \ | libavcodec-dev libavformat-dev libswscale-dev libv4l-dev \ |
Revision as of 14:54, 20 February 2016
Python 3.5 brings support for async programming in Python making it possible to use async web programming.
These instructions should work on Ubuntu 16.04 and Debian Stretch,
in older versions the OpenCV build will pick up Python 3.4 and this is going to result in mess.
Install Python:
apt-get install wget python3.5-dev build-essential unzip \ libjpeg-dev libtiff5-dev libjasper-dev libpng12-dev \ libavcodec-dev libavformat-dev libswscale-dev libv4l-dev \ libgtk-3-dev
Install pip:
wget https://bootstrap.pypa.io/get-pip.py python3 get-pip.py
Install numpy:
pip3 install numpy
Install OpenCV:
wget https://github.com/Itseez/opencv/archive/3.1.0.zip unzip 3.1.0.zip cd opencv-3.1.0 mkdir build cd build cmake .. make -j32