摘要: Python易用,但用好却不易,其中比较头疼的就是包管理和Python不同版本的问题,特别是当你使用Windows的时候。为了解决这些问题,有不少发行版的Python,比如WinPython、Anaconda等,这些发行版将python和许多常用的package打包,方便pythoners直接使用, 阅读全文
posted @ 2016-12-18 21:42 有梦就要去实现他 阅读(283) 评论(0) 推荐(0) 编辑
摘要: 1.ctrl+c 终止现在的进程 2.ctrl+d 退出现在的命令行,类似于exit 3.shift+pageup/pagedown 向上或向下翻页 4.在终端中复制是ctrl+shift+c,而不仅仅是ctrl+c,粘帖也是ctrl+shift+v 阅读全文
posted @ 2016-12-18 17:21 有梦就要去实现他 阅读(319) 评论(0) 推荐(0) 编辑
摘要: ctrl加-号就可以缩小终端的命令行的字体大小 ctrl加shift加+号放大 阅读全文
posted @ 2016-12-18 17:17 有梦就要去实现他 阅读(408) 评论(0) 推荐(0) 编辑
摘要: import tensorflow as tf tf.__version__ __看着是一个下划线,实际上是两个下划线,中间有空格 tf.__path_ 阅读全文
posted @ 2016-12-18 17:15 有梦就要去实现他 阅读(21259) 评论(0) 推荐(0) 编辑
摘要: 安装tensorflow之前需要先安装python—dev, 这个不能用pip install来安装,只能用sudo apt-get install来安装。安装后会发现还要先装另外两个东西,但是装这两个东西也还要继续装其他东西,相当麻烦且并没有成功 用aptitude 工具可以搞定先:sudo ap 阅读全文
posted @ 2016-12-18 17:01 有梦就要去实现他 阅读(12018) 评论(0) 推荐(1) 编辑
摘要: 安装新版本不用删除之前的版本,tensorflow自己会删除之前的旧版本安装新版本 tensorflow卸载:sudo pip uninstall tensorflow 最简单粗暴的方法:pip install tensorflow 但这种安装出来,我没有在安装目录中找到android的文件 现在尝 阅读全文
posted @ 2016-12-18 16:59 有梦就要去实现他 阅读(284) 评论(0) 推荐(0) 编辑
摘要: ubuntu 下安装python开发包,执行命令 sudo apt-get install python-dev,报错; Reading package lists... Error! E: Encountered a section with no Package: header E: Probl 阅读全文
posted @ 2016-12-18 16:29 有梦就要去实现他 阅读(3504) 评论(0) 推荐(0) 编辑
摘要: ~$ lspci | grep -i vga01:00.0 VGA compatible controller: NVIDIA Corporation GF119 [GeForce GT 610] (rev a1) 如果你想看gpu的详细信息,使用~$ lspci -v -s 01:00.0,则:0 阅读全文
posted @ 2016-12-18 16:03 有梦就要去实现他 阅读(26389) 评论(0) 推荐(0) 编辑