报错信息: 解决方案: # 更新conda conda update -n base conda conda update -all # 修改频道 conda config --add channels conda-forge conda config --set channel_priority ...
分类:
其他好文 时间:
2021-06-19 19:22:37
阅读次数:
0
1.在docker hub中搜索和查看对应的版本 https://hub.docker.com 2.在docker中获取对应的镜像 docker pull elasticsearch:7.13.2 3.运行镜像 docker run --name elasticsearch -d -e ES_JAV ...
分类:
其他好文 时间:
2021-06-19 19:21:45
阅读次数:
0
目录 一.前言 二.Python set list dict tuple 区别 三.猜你喜欢 零基础 Python 学习路线推荐 : Python 学习目录 >> Python 基础入门 一.前言 Python 提供多种数据类型来存放数据项集合,主要包括序列(列表 list 和元组 tuple),映 ...
分类:
编程语言 时间:
2021-06-19 19:15:33
阅读次数:
0
欢迎交流,共同学习,共同成长。 欢迎批评指正。 望注明:cnblogs ...
分类:
其他好文 时间:
2021-06-19 18:59:59
阅读次数:
0
json.dumps :把字典转换成字符串 #在python中字典就是json对象 import jsonstr_dict={"name":"xiaoming","age":"18"} #json.dumps :把字典转换成字符串 str1=json.dumps(str_dict) print(ty ...
分类:
Web程序 时间:
2021-06-19 18:52:06
阅读次数:
0
工程结构复杂,不方便查看结构目录怎么办? shell帮你搞定,看看效果 解锁方式(Mac端) 1:通过Homebrew安装tree brew install tree 2、cd到目标目录下,执行tree命令 cd /xxx/x tree /xxx/x 就是这么简单,enjoy it🍺 ...
分类:
系统相关 时间:
2021-06-19 18:41:04
阅读次数:
0
from turtle import *def moveto(x,y): penup() goto(x,y) pendown()def main(): setup(800, 600) speed(0) for radius in range(20, 200, 20): moveto(0, -radi ...
分类:
其他好文 时间:
2021-06-18 20:00:08
阅读次数:
0
#include <stdio.h> int main() { char sh[13][6]={"个","十","百","千","万","十万","百万","千万","亿","十亿","百亿","千亿","万亿"}; // int cc=0; // for(cc=0;cc<=13;cc++) // ...
分类:
编程语言 时间:
2021-06-18 19:37:12
阅读次数:
0
1.三元运算的基本形式 a:b:c=1:3:5 d=a if a>b else c 上述的形式简化了if else条件语句: if a>b:d=a else:d=c 2.bytes数据类型(二进制) 音频与视频这种的就必须是二进制 要跟字符串区分清楚str,两者不一样(python2里头是一样的,但 ...
分类:
其他好文 时间:
2021-06-18 19:29:02
阅读次数:
0