1. 程式人生 > >關於解決Python使用pip安裝pyjnius時的問題(windows平臺)

關於解決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