工具类
fatcyus
一个希望走技术的学渣
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Ubuntu 中git的安装与使用
1、git有apt和source安装两种方式2、git的使用原创 2017-09-02 09:38:15 · 391 阅读 · 0 评论 -
ubuntu下安装神经网络绘图工具Graphviz
1、Ubuntu下安装graphvizsudo apt-get install graphviz2、神经网络的绘图digraph G { rankdir=LR splines=line nodesep=.05; node [label=""]; subgraph cluster_0 { color=white;原创 2017-11-14 21:43:00 · 1074 阅读 · 0 评论 -
ubuntu16.04修改Python默认版本
Ubuntu16.04 默认python版本是Python2,但也可以修改默认的Python版本 sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 100 sudo update-alternatives --install /usr/bin/python python /usr/bin/pyth原创 2017-10-03 23:09:47 · 1962 阅读 · 0 评论 -
PyCharm连接GitHub配置使用
1、首先配置SSH连接GitHub 2、PyCharm与Github连接(1)设置GitHub账号和密码:File->Settings->Version Control->GitHub;填写github账号和密码设置完毕点击Test按钮,如果弹出Connection successful 对话框,则说明github账号和密码设置正确。(2)设置Git:选择git,点击Test弹出successfu原创 2017-10-03 22:54:53 · 2240 阅读 · 0 评论 -
tensorflow笔记: 转载的资源
这些是转载的一些资源:1、Tensorflow学习笔记2:About Session, Graph, Operation and Tensor http://www.cnblogs.com/lienhua34/p/5998853.html 2、 TensorFlow学习(三):Graph和Session http://blog.youkuaiyun.com/xierhacker/article/detai转载 2017-09-03 11:34:55 · 272 阅读 · 0 评论 -
Ubuntu 截图工具gnome-screenshot
介绍一下Ubuntu自带的截图工具gnome-screenshot$ gnome-screenshot -h #查看这个工具的帮助命令用法: gnome-screenshot [选项…] #对屏幕截图 帮助选项:-h, --help #显示帮助选项--help-all #显示全部帮助选项--help-gtk #显示 GTK+ 选项应用程序选项:-原创 2017-09-02 23:01:02 · 622 阅读 · 0 评论 -
pycharm 开启代码提示
1、先打开pycharm2、依次选择红框部分3、搞好之后,代码提示便可以使用了原创 2017-09-02 22:23:04 · 19124 阅读 · 0 评论 -
配置SSH连接GitHub
1、先安装ssh,一条命令搞定$ sudo apt-get install openssh-server2、生成秘钥$ ssh-keygen -t rsa -C "your email" 若不需要密码,连续三次回车,在~/.ssh/目录下得到两个文件:id_rsa和id_rsa.pub。3、登陆Github,将id_rsa.pub中的公钥内容全部复制到github上。点击右上角账号头像的“▼”→原创 2017-09-02 16:46:52 · 324 阅读 · 0 评论 -
git 删除远程仓库中的文件或者文件夹
git rm --cached "文件路径",不删除物理文件,仅将该文件从缓存中删除;git rm --f "文件路径",将该文件从缓存中删除,一并删除物理文件假如你想要删除远程仓库中的文件或文件夹,可以使用:git rm -r --cached a/2.txt // 删除a目录下的2.txt文件 git commit -m "删除a目录下的2.txt文件" // co原创 2017-09-02 16:11:44 · 720 阅读 · 0 评论 -
python 遇到的问题(一)
1、TypeError: ‘module’ object is not callablePython导入模块的方法有两种:import module 和 from module import,区别是前者所有导入的东西使用时需加上模块名的限定,而后者不需要。2、Add Jupyter to the interpreter of the current project.pip i原创 2017-11-14 21:29:14 · 896 阅读 · 0 评论
分享