摘要: 简单来说 如果是系统自带的python,会使用dist-packages目录 如果你手动安装python,它会直接使用目录site-packages 这允许你让两个安装隔离开来 dist-packages:系统自带的python site-packages:自己安装的python 注意:本人所写的博 阅读全文
posted @ 2019-09-17 16:00 重大的小鸿 阅读(3236) 评论(0) 推荐(0) 编辑
摘要: pip show 模块名称 即可查看pip安装的包所在路径。 如numpy: pip show numpy 阅读全文
posted @ 2019-09-17 15:50 重大的小鸿 阅读(1306) 评论(0) 推荐(0) 编辑
摘要: 兜兜转转,兜兜转转; 一次有一次,这次终于把Faster R-CNN 跑通了。 重要提示1:在开始跑Faster R-CNN之前一定要搞清楚用的是Python2 还是Python3. 不然你会无限次陷入一下错误: from ._caffe import Net, SGDSolver, Nestero 阅读全文
posted @ 2019-09-16 15:54 重大的小鸿 阅读(946) 评论(0) 推荐(0) 编辑
摘要: sudo apt-get install: apt-get可以用来安装软件、更新源,也可以用来更新自Ubuntu的典型依赖包。 (sudo apt-get remove --purge 软件名称 sudo apt-get autoremove --purge 软件名称 可以用来卸载相对应的安装) p 阅读全文
posted @ 2019-09-16 15:09 重大的小鸿 阅读(2035) 评论(0) 推荐(0) 编辑
摘要: 1. ls 命令:to show all of the major directiories filed under a given file system. for example: ls /applications--it will show the user all of the folder 阅读全文
posted @ 2019-09-16 14:23 重大的小鸿 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 安装pip: sudo apt install python-pip pip安装easydict: pip install easydict 报错:[Caffe] ImportError: No module named google.protobuf.internal 安装protobuf: su 阅读全文
posted @ 2019-09-16 14:09 重大的小鸿 阅读(275) 评论(0) 推荐(0) 编辑
摘要: Python 2.x: sudo apt-get install python-setuptools (python2.x版本执行此命令) Python 3.x: sudo apt-get install python3-setuptools (python3.x版本执行此命令) Python 2. 阅读全文
posted @ 2019-09-16 11:39 重大的小鸿 阅读(2582) 评论(0) 推荐(1) 编辑
摘要: cython 在linux(ubuntu)下安装 sudo apt-get install cython 安装后 输入 cython 即可验证是否安装成功 阅读全文
posted @ 2019-09-16 11:36 重大的小鸿 阅读(1104) 评论(0) 推荐(0) 编辑
摘要: 查看opencv版本:pkg-config opencv --modversion 阅读全文
posted @ 2019-09-16 11:21 重大的小鸿 阅读(1873) 评论(0) 推荐(0) 编辑
摘要: 直接执行这两个命令即可: sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 100 sudo update-alternatives --install /usr/bin/python python 阅读全文
posted @ 2019-09-16 10:23 重大的小鸿 阅读(857) 评论(0) 推荐(0) 编辑