会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
重大的小鸿
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
10
11
12
13
14
15
下一页
2019年9月17日
python安装第三方包的安装路径, dist-packages和site-packages区别
摘要: 简单来说 如果是系统自带的python,会使用dist-packages目录 如果你手动安装python,它会直接使用目录site-packages 这允许你让两个安装隔离开来 dist-packages:系统自带的python site-packages:自己安装的python 注意:本人所写的博
阅读全文
posted @ 2019-09-17 16:00 重大的小鸿
阅读(3236)
评论(0)
推荐(0)
编辑
pip安装路径
摘要: pip show 模块名称 即可查看pip安装的包所在路径。 如numpy: pip show numpy
阅读全文
posted @ 2019-09-17 15:50 重大的小鸿
阅读(1306)
评论(0)
推荐(0)
编辑
2019年9月16日
caffe学习一:ubuntu16.04下跑Faster R-CNN demo (基于caffe). (亲测有效,记录经历两天的吐血经历)
摘要: 兜兜转转,兜兜转转; 一次有一次,这次终于把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 、 pip install和conda install的对比
摘要: 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)
编辑
The 10 Most Important Linux Commands/10个最经常使用的命令行
摘要: 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)
编辑
setuptools的安装
摘要: 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的安装
摘要: cython 在linux(ubuntu)下安装 sudo apt-get install cython 安装后 输入 cython 即可验证是否安装成功
阅读全文
posted @ 2019-09-16 11:36 重大的小鸿
阅读(1104)
评论(0)
推荐(0)
编辑
ubuntu16.04查看opencv版本
摘要: 查看opencv版本:pkg-config opencv --modversion
阅读全文
posted @ 2019-09-16 11:21 重大的小鸿
阅读(1873)
评论(0)
推荐(0)
编辑
ubuntu16.04中将python3设置为默认
摘要: 直接执行这两个命令即可: 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)
编辑
上一页
1
···
10
11
12
13
14
15
下一页
公告