Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

MySQL/MariaDB connector for Python

License

NotificationsYou must be signed in to change notification settings

PyMySQL/mysqlclient

Repository files navigation

This project is a fork ofMySQLdb1.This project adds Python 3 support and fixed many bugs.

Support

Do Not use Github Issue Tracker to ask help. OSS Maintainer is not free tech support

When your question looks relating to Python rather than MySQL/MariaDB:

Or when you have question about MySQL/MariaDB:

Install

Windows

Building mysqlclient on Windows is very hard.But there are some binary wheels you can install easily.

If binary wheels do not exist for your version of Python, it may be possible tobuild from source, but if this does not work,do not come asking for support.To build from source, download theMariaDB C Connector and installit. It must be installed in the default location(usually "C:\Program Files\MariaDB\MariaDB Connector C" or"C:\Program Files (x86)\MariaDB\MariaDB Connector C" for 32-bit). If youbuild the connector yourself or install it in a different location, set theenvironment variableMYSQLCLIENT_CONNECTOR before installing. Once you havethe connector installed and an appropriate version of Visual Studio for yourversion of Python:

$ pip install mysqlclient

macOS (Homebrew)

Install MySQL and mysqlclient:

$# Assume you are activating Python 3 venv$ brew install mysql pkg-config$ pip install mysqlclient

If you don't want to install MySQL server, you can use mysql-client instead:

$# Assume you are activating Python 3 venv$ brew install mysql-client pkg-config$export PKG_CONFIG_PATH="$(brew --prefix)/opt/mysql-client/lib/pkgconfig"$ pip install mysqlclient

Linux

Note that this is a basic step. I can not support complete step for build for allenvironment. If you can see some error, you should fix it by yourself, or ask forsupport in some user forum. Don't file a issue on the issue tracker.

You may need to install the Python 3 and MySQL development headers and libraries like so:

  • $ sudo apt-get install python3-dev default-libmysqlclient-dev build-essential pkg-config # Debian / Ubuntu
  • % sudo yum install python3-devel mysql-devel pkgconfig # Red Hat / CentOS

Then you can install mysqlclient via pip now:

$ pip install mysqlclient

Customize build (POSIX)

mysqlclient usespkg-config --cflags --ldflags mysqlclient by default for findingcompiler/linker flags.

You can useMYSQLCLIENT_CFLAGS andMYSQLCLIENT_LDFLAGS environmentvariables to customize compiler/linker options.

$export MYSQLCLIENT_CFLAGS=`pkg-config mysqlclient --cflags`$export MYSQLCLIENT_LDFLAGS=`pkg-config mysqlclient --libs`$ pip install mysqlclient

Documentation

Documentation is hosted onRead The Docs


[8]ページ先頭

©2009-2025 Movatter.jp