上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 33 下一页

2023年6月15日

docker windows配置

摘要: docker desktop 配置国内镜像仓库{“registry-mirrors”: [“https://registry.docker-cn.com”,“http://hub-mirror.c.163.com”,“https://docker.mirrors.ustc.edu.cn”], "ho 阅读全文

posted @ 2023-06-15 14:48 zyp_java_net 阅读(158) 评论(0) 推荐(0)

2023年6月14日

pycharm修改pip镜像源

摘要: 本人较懒,没有贴图,按步骤操作即可,镜像源除了清华还有其他很多,可自行搜索 国内主要镜像地址如下: 清华:https://pypi.tuna.tsinghua.edu.cn/simple阿里云:http://mirrors.aliyun.com/pypi/simple/中国科技大学 https:// 阅读全文

posted @ 2023-06-14 07:58 zyp_java_net 阅读(587) 评论(0) 推荐(0)

2023年6月13日

Ubuntu上安装并使用Docker

摘要: 第1步 - 安装Docker官方Ubuntu存储库中提供的Docker安装包,但是可能不是最新的版本。为了确保我们获得最新版本,我们将从官方Docker存储库安装Docker。为此,我们将添加一个新的资源包,从Docker添加GPG密钥以确保下载有效,然后安装该包。 1、首先,更新现有的包列表: s 阅读全文

posted @ 2023-06-13 11:43 zyp_java_net 阅读(203) 评论(0) 推荐(0)

2023年6月8日

go 环境安装配置

摘要: 一 、安装 goang sdk https://golang.google.cn/dl/ 一、go 环境变量设置 不同于其他语言,go中没有项目的说法,只有包, 其中有两个重要的路径,GOROOT 和 GOPATHGo开发相关的环境变量如下 ( 安装时系统会自动创建,一般不需要配置 ) GOROOT 阅读全文

posted @ 2023-06-08 15:50 zyp_java_net 阅读(116) 评论(0) 推荐(0)

2023年6月1日

mysql中将0 1 转换为男女性别

摘要: SQL select name,case sextype when '1' then '男' else '女' end 性别 from employee 阅读全文

posted @ 2023-06-01 11:29 zyp_java_net 阅读(283) 评论(0) 推荐(0)

mysql重复记录处理

摘要: 这里记录一下用到的语句和语句模板: -- 查询出重复的数据SELECT COUNT(*) as repeats, address, signer_name, signer_mobileFROM user_operation_useraddressGROUP BY address, signer_na 阅读全文

posted @ 2023-06-01 11:02 zyp_java_net 阅读(20) 评论(0) 推荐(0)

2023年5月30日

ubuntu下查看-卸载软件(卸载.net core sdk的方法)

摘要: 查看已安装的包:dpkg --list 查看正则匹配的包:dpkg --list 'dotnet-*' //查看以dotnet-开头的包 卸载匹配的包:sudo apt-get --purge remove <programname> 按照正则卸载匹配的包:sudo apt-get --purge 阅读全文

posted @ 2023-05-30 22:00 zyp_java_net 阅读(259) 评论(0) 推荐(0)

2023年5月29日

ubuntu22安装docker、redis、mysql及部署net6应用

摘要: 一、更新系统软件包索引 sudo apt update 二、安装docker sudo apt install docker.io 三、在docker中安装Mysql 拉取mysql镜像 docker pull mysql:latest 查看镜像 docker images 运行容器 docker 阅读全文

posted @ 2023-05-29 11:13 zyp_java_net 阅读(603) 评论(0) 推荐(0)

2023年5月28日

mysql 查询不是今天的所有记录

摘要: 查询数据用到,记录下,不然忘记了。 select * from yj_gryj where DATE(yjsj) <> DATE(NOW()) 阅读全文

posted @ 2023-05-28 19:02 zyp_java_net 阅读(32) 评论(0) 推荐(0)

2023年5月27日

Plugin 'maven-clean-plugin:3.1.0' not found

摘要: 解决方案 增加如下代码: <groupId>org.apache.maven.plugins</groupId> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifact 阅读全文

posted @ 2023-05-27 06:58 zyp_java_net 阅读(74) 评论(0) 推荐(0)

上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 33 下一页

导航