Something about Python

Python 3.7

Posted by kamzero on 2019-05-11

How to install wheel in python 3.7?

命令行

  • win+R cmd 打开终端
  • 默认在c盘
  • cd\ 跳回跟目录
  • d: 进入d盘 此时不需要cd
  • cd D:\CS\python 即可进入目标目录

pip

  • python -m pip list 查看已安装库的目录
  • python -m pip install matplotlib-1.5.0-cp35-none-win_amd64.whl安装该库

注意库的适配性

  • cp35 适配python3.5
  • win_amd64 windows 64位系统
  • 本机 win32 python3.7

操作

  • 退出解释器 输入ctrl+z,按enter

  • 将库作为plt导入,后面使用时均通过plt来调用

    1
    2
    3
    import matplotlib.pyplot as plt
    from matplotlib.image import imread
    plt.imshow(img)