摘要:
安装 pycocotools 时出现错误 fatal error: Python.h: No such file or directory 解决方式 apt-get install python3.8-dev # 对应自己的python版本 阅读全文
摘要:
wget https://bootstrap.pypa.io/get-pip.py --no-check-certificate sudo python3 get-pip.py linux 建立软连接 # 如果连接已存在 rm -rf /usr/bin/python3 # 建立软链接 ln -s / 阅读全文
摘要:
镜像操作 # 查看已有的镜像 docker images # 删除镜像 docker rmi -f (image id or image name) # 拉取镜像 docker pull image name 容器操作 # 后台运行, 将 nginx 重命名为 nginx01 并将容器的 80 端口 阅读全文
摘要:
到网址点击立即使用 https://www.huaweicloud.com/intl/zh-cn/product/swr.html 登录后进入镜像服务 按要求操作即可 相关命令 vi /etc/docker/daemon.json 输入内容 { "registry-mirrors": [ "http 阅读全文
摘要:
卸载之前的docker sudo yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrotate \ docker-logrotate 阅读全文
摘要:
新建一个hyper-v.cmd文件,内容为 pushd "%~dp0" dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt for /f %%i in ('findstr /i . hyper-v.txt 2^>nul' 阅读全文
摘要:
安装gym和atari环境 pip3 install gym pip3 install gym[atari] pip3 install gym[accept-rom-license] 安装box2d环境 安装环境 apt-get install -y swig 安装库 pip3 install bo 阅读全文
摘要:
通过sys.stdout得到print输出的内容,再进行保存 方式一: 一次运行 import sys class Logger(object): def __init__(self, file_path: str = "./Default.log"): self.terminal = sys.st 阅读全文
摘要:
yum换源[可选] 备份原始源 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup 更换阿里源 以CentOS7为例 wget -O /etc/yum.repos.d/CentOS-Base.re 阅读全文
摘要:
安装gym pip3 install gym pip3 install gym[accept-rom-license] 安装atari环境[可选] 下载安装VS build tools 如果出现 OSError: [WinError 126] 找不到指定的模块 的话需要进行此步骤, 需要先卸载之前安 阅读全文