摘要: ``` docker pull centos:centos7.9.2009 docker images docker run -itd --name=centos --privileged=true -p 3333:22 centos:centos7.9.2009 /usr/sbin/init do 阅读全文
posted @ 2023-08-09 21:05 郭小睿 阅读(29) 评论(0) 推荐(0) 编辑
摘要: # Centos7安装Python3.8 ### Centos7安装Python3.8 安装编译相关工具 ```bash yum -y groupinstall "Development tools" yum -y install zlib-devel bzip2-devel openssl-dev 阅读全文
posted @ 2023-08-09 21:00 郭小睿 阅读(264) 评论(0) 推荐(0) 编辑
摘要: > 以下是使用 Python 3 写的上传文件到阿里云 OSS 上的代码,其中需要填写自己的 Access Key、Secret Key、Bucket 名称和上传地址 填写自己的 Access Key 和 Secret Key ``` pip install oss2 ``` ```py impor 阅读全文
posted @ 2023-08-09 01:49 郭小睿 阅读(340) 评论(0) 推荐(0) 编辑