1. # 原有的conda环境下的所有安装包
    2. pip freeze > python3.8_requirements.txt
    3. # 切换到新的系统, 使用阿里云镜像
    4. ## 第一种方式:可能部分包没有,需要到官方镜像下载, 切中间出现错误,整个安装过程会停止
    5. pip install -r python3.8_requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
    6. ## 第二种方式
    7. cat python3.8_requirements.txt | while read packagedo pip install ${package} -i https://mirrors.aliyun.com/pypi/simple/; done | grep '^ERROR:' > pip_install.error &
    8. ## 查看报错信息,手动安装剩余模块