(一). python版本切换
root身份下操作
1.终端输入Python和Python3查看版本
2.使用 update-alternatives 来为整个系统更改Python 版本,先罗列出所有可用的python 替代版本信息:
update-alternatives --list python
出现:
update-alternatives: error: no alternatives for python
解决方法如下:
update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1(注意这里不是2.7.1)
出现:
update-alternatives: using /usr/bin/python2.7 to provide /usr/bin/python (python) in auto mode
update-alternatives --install /usr/bin/python python /usr/bin/python3.5 2(注意这里不是3.5.2)
出现:
update-alternatives: using /usr/bin/python3.4 to provide /usr/bin/python (python) in auto mode
这样,update-alternatives 命 令会自动将Python3.5设置为默认 Python 版本.
3.再次罗列可用Python替代版本:
update-alternatives --list python
出现:
/usr/bin/python2.7
/usr/bin/python3.5
然后可以用:
update-alternatives --config python
来切换版本。
输入对应序号,Enter,即可。
(2). 安装opencv3.2.0
首先设置依赖:
#安装编译工具:
sudo apt-get install build-essential
#安装辅助工具:
sudo apt-get install cmake git pkg-config libgtk2.0-dev libavcodec-dev libavformat-dev libswscale-dev
#安装关联库:
sudo apt-get install python-dev python-opencv python-numpy libtbb2 libtbb-dev libjpeg-dev libpng-dev libtiff-dev libjasper-dev libdc1394-22-dev
1. 下载opencv3.2.0
解压,后进入opencv路径
cd ~/opencv
mkdir release
cd release/
2. CMake编译:
cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local -D WITH_TBB=ON -D BUILD_NEW_PYTHON_SUPPORT=ON -D WITH_V4L=ON -D WITH_QT=ON -D WITH_OPENGL=ON ..
3. make命令(-j表示用几个线程来编译,这样可以加快编译速度,不过这个与makefile的质量有关,有的工程用了-j会编译出错):
make -j $(nproc)
上述命令后一般大约要耗时1个小时,甚至更多,视个人电脑硬件配置而定。
执行完后:
sudo make install
如果编译过程出错后想要重新编译,把release目录下的CMakeCache.txt删除掉即可。
4. 添加库的路径:
sudo /bin/bash -c 'echo "/usr/local/lib" > /etc/ld.so.conf.d/opencv.conf'
然后更新系统库:
sudo ldconfig