ubuntu安装OpenCV3.4.6到conda虚拟环境下

1.去http://opencv.org/releases.html下载,选择3.4.6 sources版本
2.创建名为tensorflow虚拟环境(使用python3.6,顺便安装numpy):

conda create -n tensorflow python=3.6 numpy

3.激活虚拟环境:

source activate tensorflow

4.安装opencv所需的依赖

sudo apt-get update
 
sudo apt-get upgrade
 
sudo apt-get install build-essential cmake pkg-config libatlas-base-dev gfortran unzip
 
sudo apt install python-pip
 
pip install numpy

5.编译安装opencv,解压刚才下载的包

unzip opencv-3.4.6.zip

cd opencv-3.4.6

mkdir build && cd build

#这步中的CMAKE_INSTALL_PREFIX是安装路径,默认的可以是/usr/local,也可以像我一样装在个人目录下,PYTHON_EXECUTABLE是用到的python,可以在命令行中输入which python查看用到的是哪个python(替换成你自己虚拟环境中的python)
cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/home/my/anaconda3/envs/tensorflow -D PYTHON_EXECUTABLE=/home/my/anaconda3/envs/tensorflow/bin/python -D BUILD_EXAMPLES=ON -D BUILD_SHARED_LIBS=ON ..

make -j20
 
#如果前面CMAKE_INSTALL_PREFIX选择的是/usr/local,这里需改为sudo make install
make install 

6、验证安装是否成功

 python
>>> import cv2
>>> cv2.__version__
'3.4.6'

你可能感兴趣的:(LINUX)