zoukankan      html  css  js  c++  java
  • Installing MySQL Connector/Python using pip v1.5

    The latest pip versions will fail on you when the packages it needs to install are not hosted on PyPI . When you try to install MySQL Connector/Python the usually way, you get following message is:

    shell> pip install mysql-connector-python
      Could not find any downloads that satisfy the requirement 
        mysql-connector-python
      Some externally hosted files were ignored 
        (use --allow-external mysql-connector-python to allow).

    I have updated the download URL to include the MD5 checksum, and MySQL Connector/Python should now install using pip using following command:

    shell> pip install --allow-external mysql-connector-python 
      mysql-connector-python

    Yes, you have to repeat the mysql-connector-python name.

    AboutGeert Vanderkelen

    Geert JM Vanderkelen, based in Berlin (Germany), is a member of the MySQL Utilities Team at Oracle and lead developer of Connector/Python. Before joining the MySQL team, he has worked as Developer, DBA and SysAdmin for over 6 years for various companies in Belgium and Germany. Geert was a key member of the MySQL Support Team for more than 7 years.

  • 相关阅读:
    centos7手动搭建redis集群
    Xshell突破四个窗口限制
    Redis官方集群规范
    Redis官方集群教程
    centos7 更新阿里YUM源
    gitlab配置ssh
    Java前端控制器模式~
    Java数据访问对象模式
    Java组合实体模式~
    Java业务代理模式~
  • 原文地址:https://www.cnblogs.com/feika/p/4498612.html
Copyright © 2011-2022 走看看