logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

JDK安装及配置(tar.gz版本)

1. 安装1.1 步骤将下载好tar.gz版本的jdk上传到系统中# crt或者xshell中# 使用·rz·命令从本地上传到服务器(虚拟机)中# 若未安装:yum install -y lrzsz解压缩tar -zxvf jdk-8u311-linux-x64.tar.gz移动到/usr/java路径下mv jdk1.8.0_311/ /usr/java/2. 配置环境变量编辑/etc/prof

#linux
Linux使用docker部署gitlab

0、官方文档详细请参考官方文档:https://docs.gitlab.com/ee/install/docker.html1、拉取gitlab社区版gitlab-ee是企业版,我们拉取社区版gitlab-ce,命令如下:docker pull gitlab/gitlab-ce2、volumes挂载规划配置其他内容之前要配置一个环境变量$GITLAB_HOME,用来指定logs、config、da

#docker#gitlab
k8s加入集群之获取token和sha256

1 获取或生成token1.1 查看token命令:kubeadm token list[root@k8s-master /]# kubeadm token listTOKENTTLEXPIRESUSAGESDESCRIPTIONEXTRA GROUPSjg2shz.spsj

#kubernetes#linux#centos
python如何绘制柱状图

1、插件安装安装两种插件pip install -i https://pypi.tuna.tsinghua.edu.cn/simple matplotlibpip install -i https://pypi.tuna.tsinghua.edu.cn/simple numpy2、普通柱状图柱状图绘制步骤导入matplotlib.pyplot模块准备数据,可以使用numpy/pandas整理数据调

#matplotlib#python
FastAPI(1) 简单介绍

1、前言最近用FastAPI编写了几个日常需要用的接口,又看到有大佬已经学完了,因此跟着大佬卷起来:小菠萝测试笔记-FastAPI2、简单介绍- 官网地址:https://fastapi.tiangolo.com/- FastAPI是什么FastAPI是一个Web框架(后续了解更多之后,待补充…)- FastAPI优点(照抄官网)类型检查、自动 swagger UI、支持 asyncio、强大的依

#python#fastapi
FastAPI(2)快速入门

1、安装FastAPI安装fastapi和unicorn模块,unicorn可以作为服务器pip install fastapi -i https://pypi.tuna.tsinghua.edu.cn/simplepip install unicorn -i https://pypi.tuna.tsinghua.edu.cn/simple2、启动一个最简单的例子# filename: main.

#python#fastapi
解决使用matplotlib.pyplot画图包含中文乱码显示问题(macbook上 family ‘sans-serif‘ not found 问题)

一、matplotlib画图中文乱码问题使用matplotlib.pyplot画图,有中文字体会显示乱码问题,这时需要添加如下代码:import matplotlib.pyplot as plt...plt.rcParams["font.sans-serif"] = ["SimHei"]...二、macbook没有SimHei的问题但是那之后,如果是macOs系统,又会出现另一个问题:findfo

#python
python往word文档中写入表格、段落、标题、图片...(超级全)

1、安装python-docx我们使用python-docx来操作word文档,首先是安装:pip install python-docx -i https://pypi.tuna.tsinghua.edu.cn/simple然后放两个参考文档:官方手册:https://python-docx.readthedocs.io/en/latest/index.htmlpypi官方地址:https://

#python
python如何绘制柱状图

1、插件安装安装两种插件pip install -i https://pypi.tuna.tsinghua.edu.cn/simple matplotlibpip install -i https://pypi.tuna.tsinghua.edu.cn/simple numpy2、普通柱状图柱状图绘制步骤导入matplotlib.pyplot模块准备数据,可以使用numpy/pandas整理数据调

#python
到底了