摘要:
# 并发/并行;同步/异步;阻塞/非阻塞 ## 并发/并行 ```python # 并行 同一时刻,执行多个任务的能力,并行必须是多cpu支持 # 并发 同一时间段内,执行多个任务的能力,所有操作系统都支持并发,单核cpu也可以并发 # 串行 多个任务依次进行,每个任务必须等待上一个任务完成才能开始 阅读全文
摘要:
-把yum源改成了阿里云的源 》 # 1 cd到该路径 cd /etc/yum.repos.d # 2 下载阿里云的源 wget http://mirrors.aliyun.com/repo/Centos-7.repo # 下载Centos-7.repo 放在这个路径下即可 # 3 重置 yum c 阅读全文
摘要:
# pip install 下载比较慢 》第三方包都在 pypi 上,国外的,下载起来比较慢 # 临时换源:pip install -i 源地址(清华,阿里,豆瓣) # 以后永久换源,只要pip install 就是去国内镜像站下载 """ 1、采用国内源,加速下载模块的速度 2、常用pip源: - 阅读全文
摘要:
执行这一步时报错: ./configure --prefix=/usr/local/python39 报错内容是: configure: error: no acceptable C compiler found in $PATH 这里的报错原因为,找不到合适的 C 编译器,我们需要更新一下 gcc 阅读全文
摘要:
no matching manifest for linux/arm64/v8 in the manifest list entries 解决方法: docker pull --platform linux/x86_64 mysql:版本号 阅读全文