安装mysqlclient时出错

jq6vz3qz  于 2021-06-21  发布在  Mysql
关注(0)|答案(4)|浏览(337)

我正在尝试安装mysqlclient以使用django连接到我的数据库,但出现以下错误:

(venv) dhcp-ccc-12919:project user$ pip3 install mysqlclient
Collecting mysqlclient
  Using cached https://files.pythonhosted.org/packages/6f/86/bad31f1c1bb0cc99e88ca2adb7cb5c71f7a6540c1bb001480513de76a931/mysqlclient-1.3.12.tar.gz
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/private/var/folders/l4/0f1p1xlj3hlbxr6rzgqzrxmh0000gn/T/pip-install-lo7y8khq/mysqlclient/setup.py", line 17, in <module>
        metadata, options = get_config()
      File "/private/var/folders/l4/0f1p1xlj3hlbxr6rzgqzrxmh0000gn/T/pip-install-lo7y8khq/mysqlclient/setup_posix.py", line 54, in get_config
        libraries = [dequote(i[2:]) for i in libs if i.startswith('-l')]
      File "/private/var/folders/l4/0f1p1xlj3hlbxr6rzgqzrxmh0000gn/T/pip-install-lo7y8khq/mysqlclient/setup_posix.py", line 54, in <listcomp>
        libraries = [dequote(i[2:]) for i in libs if i.startswith('-l')]
      File "/private/var/folders/l4/0f1p1xlj3hlbxr6rzgqzrxmh0000gn/T/pip-install-lo7y8khq/mysqlclient/setup_posix.py", line 12, in dequote
        if s[0] in "\"'" and s[0] == s[-1]:
    IndexError: string index out of range

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/l4/0f1p1xlj3hlbxr6rzgqzrxmh0000gn/T/pip-install-lo7y8khq/mysqlclient/

我的设置中有以下内容.py

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql',
        'NAME': 'todo',
        'USER': 'root',
        'PASSWORD': 'password'
    }
}
atmip9wb

atmip9wb1#

如果你在Windows上,
您可以安装 mysqlclient 从这里开始使用轮子。
根据您的平台加载相应的文件;例如:如果您使用的是python3.6和32位python,请下载
mysqlclient‑1.3.13‑cp36‑cp36m‑win32.whl
下载后,在c:/cs中复制,然后使用以下代码安装该文件:

pip3 install C:\mysqlclient‑1.3.13‑cp36‑cp36m‑win32.whl\

如果您使用的是虚拟环境,请在安装之前激活虚拟环境。

7gcisfzg

7gcisfzg2#

如果你看到mysqlclient的文档,我认为它对你有很大的帮助。
文件说:
请注意,这是一个基本步骤。我不能支持为所有环境构建的完整步骤。如果你能看到一些错误,你应该自己修复它,或者在一些用户论坛上寻求支持。不要在问题追踪器上提交问题。
您可能需要安装python 3和mysql开发头文件和库,如下所示:

$ sudo apt-get install python3-dev default-libmysqlclient-dev build-essential # Debian / Ubuntu

$ sudo yum install python3-devel mysql-devel # Red Hat / CentOS

现在可以通过pip安装mysqlclient:

$ pip install mysqlclient
yi0zb3m4

yi0zb3m43#

请访问以下链接,其中包含不同操作系统的工作pip安装:
https://github.com/prasad01dalavi/python_packages_installations
对于linux中的python2

sudo apt-get install -y python-dev libmysqlclient-dev && sudo pip install mysqlclient
clj7thdc

clj7thdc4#

brew install mysql

帮我修好了

相关问题