环境配置
MatthewHsw
搬砖新兵
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
python相关问题
安装python 3.6 sudo add-apt-repository ppa:jonathonf/python-3.6 sudo apt-get update sudo apt-get install python3.6 调整python3.6的优先级,使其为系统默认值 sudo update-alternatives --install /usr/bin/python3 python3 /u...原创 2018-12-17 15:03:11 · 326 阅读 · 0 评论 -
pip install
安装pip3 sudo apt-get install python3-pip 安装ipython sudo pip3 install ipython pip升级 sudo pip3 install --upgrade pip sudo pip install --upgrade pip pip升级后出现ImportError: can not import name main 编辑/usr/bi...原创 2018-12-17 15:09:25 · 1770 阅读 · 0 评论 -
cuda cudnn
推荐cuda安装使用.run文件,cudnn安装使用三个deb文件安装,简单方便. cudnn的安装教程可以参考官方地址. 查看cuda版本: cat /usr/local/cuda/version.txt 查看cudnn版本: cat /usr/local/cuda/include/cudnn.h | grep CUDNN_MAJOR -A 2 如果是使用deb文件安装的cudnn,...原创 2018-11-07 20:27:30 · 820 阅读 · 0 评论 -
ubuntu16.04 安装opencv 3.4.x + opencv_contrib 3.4.x
从github上下载对应版本的opencv和opencv_contrib. 解压缩文件夹, 并将opencv_contrib放在opencv目录下 安装必要的依赖项: sudo apt-get install build-essential sudo apt-get install cmake git libgtk2.0-dev pkg-config libavcodec-dev li...原创 2019-03-08 14:45:27 · 573 阅读 · 0 评论
分享