打造 Ubuntu20.10办公环境,安装WPS Office2019 WPS Office2019 For Linux 下载地址: 下载地址 : https://linux.wps.cn/# ,执行下载命令 wget https://wdl1.cache.wps.cn/wps/download/e ...
分类:
系统相关 时间:
2021-01-25 11:29:39
阅读次数:
0
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun ...
分类:
其他好文 时间:
2021-01-25 11:26:11
阅读次数:
0
感谢作者> https://www.cnblogs.com/botoo/p/11762045.html CentOS7中自带的python版本是python-2.7.5,由于新开的虚拟机需要使用python3,于是便升级一下版本。 安装Python3.7.3 官网下载地址:https://www.p ...
分类:
编程语言 时间:
2021-01-25 11:22:41
阅读次数:
0
JAVA开发环境搭建 卸载JDK 打开我的电脑属性 高级电脑设置,环境变量 系统变量中有个变量名为JAVA_HOME,点击根目录,删除根目录文件,再删除对应的变量和PATH win + r 查看JAVA-VERSION 检查是否删除完全 安装JDK 搜索JDK1.8,推荐安装1.8 安装地址 下载, ...
分类:
编程语言 时间:
2021-01-25 11:10:19
阅读次数:
0
第1章 Redis初识 Redis 是什么 开源 基于键值的存储服务系统 多种数据结构 strings hash linked list sets sorted sets 高性能、功能丰富 Redis 的特性 速度快 持久化 多种数据结构 支持多种编程语言 功能丰富 简单 主从复制 高可用、分布式 ...
分类:
其他好文 时间:
2021-01-25 11:08:42
阅读次数:
0
T serviceClass=xxx.Class.newInstance(); Method xxxMethod = serviceClass.getMethod(methodName, requestClass); Object xxx = xxxMethod.invoke(serviceInst ...
分类:
其他好文 时间:
2021-01-25 10:36:12
阅读次数:
0
Kernel setup There are two kernel structs, kernel.Kernel and ring0.Kernel. kernel.Kernel contains most of kernel data structures while ring0.kernel on ...
分类:
其他好文 时间:
2021-01-22 12:24:28
阅读次数:
0
Charles 安装 官方下载地址 66 windows:官网下载并按照步骤一步步安装即可 Mac:官网下载并按照步骤一步步安装即可 Linux: wget -q -O - https://www.charlesproxy.com/packages/apt/PublicKey | sudo apt- ...
分类:
其他好文 时间:
2021-01-22 12:10:38
阅读次数:
0
Redis主从+Sentinel搭建文档 1、单机redis安装 wget http://download.redis.io/releases/redis-5.0.3.tar.gzcd /usr/local/tar -zxvf redis-5.0.3.tar.gzmv redis-5.0.3/ re ...
分类:
其他好文 时间:
2021-01-22 11:52:28
阅读次数:
0
类中的对象如何作为参数传入函数 只需要将类作为形参传入,接着就可在函数定义时直接运用该类中的对象了 例子,其中用到的 graphics.py 类 from graphics import * win = GraphWin('test', 300, 300) # 函数定义, 设置窗口背景色并且在窗口中 ...
分类:
编程语言 时间:
2021-01-22 11:45:14
阅读次数:
0