Installing specific package versions with pip

前端 未结 11 617
借酒劲吻你
借酒劲吻你 2020-11-22 08:38

I\'m trying to install version 1.2.2 of the MySQL_python adaptor, using a fresh virtualenv created with the --no-site-packages option. The current version shown

11条回答
  •  难免孤独
    2020-11-22 09:07

    If you want to update to latest version and you don't know what is the latest version you can type.

    pip install MySQL_python --upgrade

    This will update the MySQL_python for latest version available, you can use for any other package version.

提交回复
热议问题