minitest -v命令一系列报错

  1. 下载Minium框架压缩包https://git.weixin.qq.com/minitest/minium-doc/blob/master/minium/Python/dist/minium-1.0.6.zip
  2. 方式一:pip install minium-latest.zip(我的这个方式失败了,用方式二)
  3. 方式二:python setup.py install
  4. 完成后输入minitest -v命令查看版本,无报错则成功,有问题就处理
  5. 我输入minitest -v出现的报错:
  6. 安装numpy,→ pip install numpy
  7. The ‘Pillow’ distribution was not
    found, → python -m pip install --upgrade pip,python -m pip
    install --upgrade Pillow
  8. The ‘Deprecated~=1.2.6’ distribution was
    not found → pip install Deprecated
  9. The ‘urllib3<1.27,>=1.21.1’
    distribution was not found → easy_install urllib31.21.1
    idna<4,>=2.5 → easy_install idna
    2.5
  10. The’charset-normalizer~=2.0.0’ distribution was not found →
    easy_install charset-normalizer==2.0.0
  11. The ‘certifi>=2017.4.17’
    distribution was not found → easy_install certifi==2017.4.17
  12. The ‘py<2.0.0,>=1.4.26’ distribution was not → easy_install
    py==1.4.26
  13. The ‘decorator>=3.4.2’ distribution was not found →
    easy_install decorator==3.4.2
  14. minitest -v → {‘version’:
    ‘1.0.8’, ‘revision’: ‘9960b1edc32dcaaae85c38625e20642cd62d809e’,
    ‘branch’: ‘master’, ‘update_at’: ‘2021-06-24 15:22:33’} 大功告成!

你可能感兴趣的:(python)