上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 21 下一页
摘要: /home/'username'/.local/lib/python3.6/site-packages/ 阅读全文
posted @ 2018-11-22 10:09 andy_0212 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 菜鸟教程 在命令状态下对当前行用== (连按=两次), 或对多行用n==(n是自然数)表示自动缩进从当前行起的下面n行。你可以试试把代码缩进任意打乱再用n==排版,相当于一般IDE里的code format。使用gg=G可对整篇代码进行排版。 vim 选择文本,删除,复制,粘贴 文本的选择,对于编辑 阅读全文
posted @ 2018-11-21 00:03 andy_0212 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 1.Linux链接概念Linux链接分两种,一种被称为硬链接(Hard Link),另一种被称为符号链接(Symbolic Link)。默认情况下,ln命令产生硬链接。 【硬连接】硬连接指通过索引节点来进行连接。在Linux的文件系统中,保存在磁盘分区中的文件不管是什么类型都给它分配一个编号,称为索 阅读全文
posted @ 2018-11-20 22:57 andy_0212 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 原文 Python2 千万不要删! 服务器上有的LINUX系统默认的是使用Python2 的,如果删除将会导致某些功能无法使用,所以千万不要删! Centos默认的是python版本一般都是2.6或者2.7。 python3的安装需要的依赖 yum install openssl-devel bzi 阅读全文
posted @ 2018-11-20 11:05 andy_0212 阅读(293) 评论(0) 推荐(0) 编辑
摘要: https://www.cheatography.com/davechild/cheat-sheets/linux-command-line/ Bash Commands uname -a Show system and kernel head -n1 /etc/issue Show distri­ 阅读全文
posted @ 2018-11-19 22:12 andy_0212 阅读(341) 评论(0) 推荐(0) 编辑
摘要: centos7安装python3.6和pip3 1.yum -y install epel-release 2..执行成功之后,再次执行yum install python-pip 3.对安装好的pip进行升级 pip install –upgrade pip (注意是两个短横线~~) 到这里pip 阅读全文
posted @ 2018-11-19 22:04 andy_0212 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 将自己的python程序打包成.exe/.app(秀同学一脸呐) https://blog.csdn.net/MrLevo520/article/details/51840217 Python程序打包成exe可执行文件 https://blog.csdn.net/zengxiantao1994/ar 阅读全文
posted @ 2018-11-15 09:58 andy_0212 阅读(548) 评论(0) 推荐(0) 编辑
摘要: * fetchone() : 返回单个的元组,也就是一条记录(row),如果没有结果 , 则返回 None cu.execute("select user,password from user where user='%s'" %name) arr= cur.fetchone() 此时 通过 arr 阅读全文
posted @ 2018-11-13 14:39 andy_0212 阅读(466) 评论(0) 推荐(0) 编辑
摘要: 1.- How do I get mysql prompt in linux terminal? At the Enter password: prompt, well, enter root's password :) You can find further reference by typin 阅读全文
posted @ 2018-11-13 09:08 andy_0212 阅读(467) 评论(0) 推荐(0) 编辑
摘要: 管理MySQL的客户端软件-MySQL Workbench 阅读全文
posted @ 2018-11-13 08:59 andy_0212 阅读(96) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 21 下一页