yuyanghui / yuyanghui.github.io

0 stars 0 forks source link

切换python默认版本 #5

Open yuyanghui opened 3 years ago

yuyanghui commented 3 years ago

在CentOS 8上安装Python 2

Python 2软件包也包含在默认的CentOS 8存储库中。

要安装Python 2,请输入以下命令:

$ sudo dnf install python2

通过键入以下命令验证安装:

$ python2 --version

输出应如下所示内容:

Python 2.7.15

要执行Python 2,请输入python2,然后运行pip并输入pip2。

设置默认Python版本(Unversioned Python命令)

如果你有希望在系统路径中找到python命令的应用程序,则需要创建unversioned python命令并设置默认版本。

要将Python 3设置为系统范围内的非版本化python命令,请使用Alternatives实用程序:

$ sudo alternatives --set python /usr/bin/python3

对于Python 2,输入:

$ sudo alternatives --set python /usr/bin/python2

yuyanghui commented 3 years ago

在harbor启动目录(./install/sh的目录)下面有一个隐藏目录/data 可以rm -rf /data/* 多次重新安装的时候会在里面存在上次初始化后遗留的数据导致下次初始化的时候存在上次的数据导致初始化失败

yuyanghui commented 3 years ago

harbor安装 https://blog.csdn.net/weixin_38942791/article/details/107445096

yuyanghui commented 3 years ago

Centos7安装DockerCE

  1. 说明 以下使用的系统为centos7,64位,镜像为CentOS-7-x86_64-Minimal-1804,所有操作以root用户操作

  2. 安装Docker官方源 2.1 安装yum工具集 yum install -y yum-utils 2.2 安装Docker源 yum-config-manager --add-repo \ https://download.docker.com/linux/centos/docker-ce.repo 2.3 更新yum缓存 yum makecache fast

  3. 安装Docker yum install -y docker-ce

  4. 启动Docker systemctl start docker

  5. 设置Docker开机自启 systemctl enable docker

yuyanghui commented 3 years ago

prerender-spa-plugin出现Failed to launch chrome 解决方案

1、确保 prerender-spa-plugin 配置中不包含headless 和 inject配置项

new PrerenderSPAPlugin({ routes: ["/future"], staticDir: path.join(__dirname, '../build'), renderer: new Renderer({ renderAfterTime: 5000 }) }) 2、在Linux 系统下安装依赖包,命令如下:

yum install libXScrnSaver atk java-atk-wrapper at-spi2-atk gtk3 libXt -y