python安装拓展包

使用pip安装拓展包

  1. pip install package-name
  2. pip install -i 镜像地址 package-name
    常用的镜像地址有:
    清华:https://pypi.tuna.tsinghua.edu.cn/simple
    阿里云:http://mirrors.aliyun.com/pypi/simple/
    中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
    华中理工大学:http://pypi.hustunique.com/
    山东理工大学:http://pypi.sdutlinux.org/
    豆瓣:http://pypi.douban.com/simple/
    例如:
    pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pandas==2.0.0
  3. 本地安装
    pip install local_package_path
    例如:
    pip insall E:\Pillow‑6.2.1‑cp35‑cp35m‑win_amd64.whl

升级包的版本

pip install --upgrade package_name

卸载拓展包

pip uninstall package_name

你可能感兴趣的:(python)