关于解决Python使用pip安装pyjnius时的问题(windows平台)

环境准备:
       1、 安装 python 2.7版本并配置环境变量
        path中加入
        Python27
         Python27\Scripts
         两个路径

         2、运行命令(按顺序执行)
                 pip install selenium
                 pip install Cython
                 pip install pyjnius
                 pip install ConfigParser
注意:请确保Python的版本位数和你的系统位数是一致,如32位python版本必须对应32位的系统


问题一:Collecting Cython
  Could not find a version that satisfies the requirement Cython (from versions:
 )
No matching distribution found for Cython


解决方案:升级pip,使用如下命令:python -m pip install -U pip


ps:官方安装文档:http://pyjnius.readthedocs.io/en/latest/installation.html

你可能感兴趣的:(python开发环境)