Ali Razmdideh Asked: 2017-08-16 07:27:29 +0800 CST2017-08-16 07:27:29 +0800 CST 2017-08-16 07:27:29 +0800 CST Install OpenCV 3 on Ubuntu 17.10 772 I'm using Ubuntu 17.10 and I want to install OpenCV 3 on it. How can I install OpenCV for Python 3 on Ubuntu 17.10? apt 1 Answers Voted Best Answer Ali Razmdideh 2017-08-16T07:27:29+08:002017-08-16T07:27:29+08:00 For Ubuntu 17.10 and above: python3-opencv package is available in Official Ubuntu Repositories. So you can install this package with this command easily (without any need to pip or any other ways): sudo apt install python3-opencv Additional information : As this package is available in universe repositories of Ubuntu, so this repositories should be active on your machine (That's active by default) : sudo add-apt-repository universe sudo apt update
For Ubuntu 17.10 and above:
python3-opencv
package is available in Official Ubuntu Repositories.So you can install this package with this command easily (without any need to pip or any other ways):
Additional information :
As this package is available in
universe
repositories of Ubuntu, so this repositories should be active on your machine (That's active by default) :