会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
尚书房的爱
博客园
首页
新随笔
联系
管理
订阅
2019年1月10日
VM Linux版本安装
摘要: 安装方法 https://www.jb51.net/softs/619194.html 1. 增加执行权限: sudo chmod +x VMware-Workstation-Full-14.1.2-8497320.x86_64.bundle 2.执行安装 sudo ./VMware-Worksta
阅读全文
posted @ 2019-01-10 19:24 尚书房的爱
阅读(1369)
评论(0)
推荐(0)
2018年12月13日
mysql基础学习
摘要: 数据库学习的命令; 登陆MySQL Mysql -u root -p 显示当前连接的数据库: Select database(); 显示当前服务器版本 Select version(); 显示当前日期时间 Select now(); 显示当前用户 Select user(); 创建mysql Cre
阅读全文
posted @ 2018-12-13 20:23 尚书房的爱
阅读(162)
评论(0)
推荐(0)
centos 7安装python 3
摘要: linux-Centos7安装python3并与python2共存 1.查看是否已经安装Python CentOS 7.2 默认安装了python2.7.5 因为一些命令要用它比如yum 它使用的是python2.7.5。 使用 python -V 命令查看一下是否安装Python 然后使用命令 w
阅读全文
posted @ 2018-12-13 19:25 尚书房的爱
阅读(180)
评论(0)
推荐(0)
2018年12月11日
centos 7安装myslq
摘要: 安装成功后重启mysql服务。 初次安装mysql,root账户没有密码。
阅读全文
posted @ 2018-12-11 14:47 尚书房的爱
阅读(127)
评论(0)
推荐(0)
2018年12月7日
配置python3
摘要: 1. 下载解压。$ wget https://www.python.org/ftp/python/3.4.1/Python-3.4.1.tgz$ tar zxvf Python-3.4.1.tgz 2. 进入解压后的目录,执行安装配置$ ./configure --prefix=/opt/pytho
阅读全文
posted @ 2018-12-07 10:58 尚书房的爱
阅读(141)
评论(0)
推荐(0)
2018年11月29日
redhat 7 配置源
摘要: http://blog.51cto.com/eagle2014/1434305 一、准备工作 Vmware Workstation 10.0虚拟机软件(http://www.vmware.com/products/workstation/) rhel-server-7.0-x86_64-dvd.is
阅读全文
posted @ 2018-11-29 09:16 尚书房的爱
阅读(972)
评论(0)
推荐(0)
2018年11月26日
python小游戏,石头/剪子/布
摘要: #从控制台输入石头(1)/剪子(2)/布(3) player=int(input("玩家出拳 石头(1)/剪子(2)/布(3)")) #电脑随机出拳 computer computer == 1 print("玩家出的拳是%d - 电脑出的拳是%d" %(player , computer)) #玩
阅读全文
posted @ 2018-11-26 11:29 尚书房的爱
阅读(175)
评论(0)
推荐(0)