【海龟编辑器--imageio库版本安装错误问题】

import traceback
import os
import sys
import platform

# *********************************************************************
# 本程序主要为了解决imageio库版本安装错误问题
# 本程序安装的版本如下:
#   统一需要先卸载imageio版本,不管有没有安装过。后续安装imageio2.5.0
# *********************************************************************

py_path, py_exe = sys.executable.rsplit(os.sep, 1)  # 获取python可执行环境路径,以及可执行环境名称
os.chdir(py_path)  # 切换到对应的路径下,方便执行命令


def get_osname():
    """获取操作系统名称"""
    plt = platform.platform()
    if "Darwin" in plt:
        return "Mac"
    elif "Windows" in plt:
        return "Windows"
    else:
        pass


def handle(version="0.5.10"):
    """处理不同系统版本问题"""
    py_env = ".{}{}".format(os.sep, py_exe)
    os.system("{} -m pip uninstall imageio -y".format(py_env))
    os.system("{} -m pip uninstall imageio-snapshot -y".format(py_env))
    print("即将为您安装imageio {} 版本!".format(version))
    os.system(
        "{} -m pip install imageio=={} -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn".format(py_env, version))
    os.system(
        "{} -m pip install imageio-snapshot -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn".format(py_env))
    print("------->  imageio {} 版本安装成功!".format(version))
    print("------->  imageio-snapshot 安装成功!")


def main():
    """程序入口"""
    osname = get_osname()
    print("您的电脑系统为:{}".format(osname))
    print("正在卸载您电脑中已经存在的imageio版本,请稍后...")
    if osname == "Mac":
        handle("2.5.0")
    elif osname == "Windows":
        handle("2.5.0")


if __name__ == "__main__":
    try:
        main()
    except Exception as e:
        print("安装过程出现了异常,异常信息如下:")
        traceback.print_exc()

你可能感兴趣的:(Python,编辑器,python,pycharm)