摘要:
安装 Anaconda 管理 Anaconda 打开 Anaconda Prompt 查看版本号 设置 Anaconda 国内源 查看 .condarc 配置文件 创建 .condarc 配置文件 编辑 .condarc 配置文件 channels: - defaults show_channel_ 阅读全文
摘要:
环境说明 服务 ip 端口 备注 nexus 192.168.80.129 (内网) 8081 内网地址无法访问外网 nginx 192.168.80.128 (内网) 192.168.174.126 (外网) 88 19000 192.168.174.126 地址可以访问外网 创建 Blob St 阅读全文
摘要:
firewalld zone 说明 Public(公共): 此区域适用于公共网络,例如互联网。 默认情况下,不信任的流量通常被阻止。 External(外部): 此区域适用于外部网络,例如在连接到互联网的服务器上的网络接口。 类似于 Public 区域,但是可以区分外部和内部信任的网络流量。 Int 阅读全文
摘要:
服务 ip 端口 备注 nexus 192.168.80.129 (内网) 8081 内网地址无法访问外网 nginx 192.168.80.128 (内网) 192.168.174.126 (外网) 19000 192.168.174.126 地址可以访问外网 创建 Blob Stores 创建 阅读全文
摘要:
环境说明 服务 ip 端口 备注 nexus 192.168.80.129 (内网) 8081 内网地址无法访问外网 nginx 192.168.80.128 (内网) 192.168.174.126 (外网) 19000 192.168.174.126 地址可以访问外网 创建 Blob Store 阅读全文
摘要:
环境说明 服务 ip 端口 备注 nexus 192.168.80.129 (内网) 8081 内网地址无法访问外网 nginx 192.168.80.128 (内网) 192.168.174.126 (外网) 代理端口 88 192.168.174.126 地址可以访问外网 创建 Blob Sto 阅读全文
摘要:
环境说明 服务 ip 端口 备注 nexus 192.168.80.129 (内网) 8081 内网地址无法访问外网 nginx 192.168.80.128 (内网) 192.168.174.126 (外网) 19000 nginx 代理到 https://goproxy.cn 创建 Blob S 阅读全文
摘要:
创建数据目录 mkdir -pv /data/nexus/nexus-data && chown -R 200 /data/nexus/nexus-data docker-compose.yaml version: '3' services: nexus3: image: sonatype/nexu 阅读全文
摘要:
内置数值型数据结构 int 整数 (int):在 Python 中,整数是没有小数部分的数字。整数可以是正数、负数或零。Python 中的整数没有大小限制,取决于内存区域的大小,可以表示任意大小的整数。 x = 10 y = -5 z = 0 print(x, y, z) # 输出: 10 -5 0 阅读全文
摘要:
判断数字位数 ## 给定一个不超过5位的整数,判定该数的位数,以及依次打印,万位到个位。 # 接收用户输入的整数 num = int(input("请输入一个小于等于5位数的整数:")) # 将整数转换为字符串,计算整数的位数 num_str = str(num) length = len(num_ 阅读全文