无法运行命令“pip install mariadb”

xkrw2x1b  于 2022-11-08  发布在  其他
关注(0)|答案(2)|浏览(237)

这是我运行命令pip install mariadb时得到的结果:

Defaulting to user installation because normal site-packages is not writeable
Collecting mariadb
  Using cached mariadb-1.1.4.zip (97 kB)
  Preparing metadata (setup.py) ... error
  error: subprocess-exited-with-error

  × python setup.py egg_info did not run successfully.
  │ exit code: 1
  ╰─> [8 lines of output]
      Traceback (most recent call last):
        File "<string>", line 2, in <module>
        File "<pip-setuptools-caller>", line 34, in <module>
        File "/tmp/pip-install-6kwo2pga/mariadb_84568c03780743cba30d255711f92d08/setup.py", line 27, in <module>
          cfg = get_config(options)
        File "/tmp/pip-install-6kwo2pga/mariadb_84568c03780743cba30d255711f92d08/mariadb_posix.py", line 64, in get_config
          print('MariaDB Connector/Python requires MariaDB Connector/C '
      TypeError: not enough arguments for format string
      [end of output]

  note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed

× Encountered error while generating package metadata.
╰─> See above for output.

note: This is an issue with the package mentioned above, not pip.
hint: See above for details.

我花了几个小时试图解决这个问题,但我做不到,我来到这里,需要解决方案。是的,我也安装了连接器,甚至我的老师也感到惊讶,因为我在尝试安装连接器后遇到了这个错误(https://mariadb.com/docs/connect/programming-languages/c/install/#connector-c-install-repo-install)。
我试着重新安装python和pip(不是最好的主意,因为这花了一些时间,我还必须重新安装我的桌面)。我也运行了sudo apt updatesudo apt upgrade,但什么都没有。我甚至修复了它(它确实坏了,我不得不删除他试图更新的包)。
不管怎么说,我完全不知道,我甚至在stackoverflow和github上看过关于同一个问题的其他答案,但似乎因为某种原因我不能让它工作。如果有人能帮助我,我希望有人能帮助我!

qni6mghb

qni6mghb1#

检查MariaDB连接器/C的安装版本。所需版本〉3.2.4。
mariadb_config --cc_version
如果安装的版本太旧,则必须升级Connector/C。
来自安装常见问题解答:
以前安装的MariaDB Connector/C版本太旧,无法用于您尝试安装的MariaDB Connector/Python版本。

  • 检查您的发行版是否可以升级到符合要求的最新版本MariaDB Connector/C。
  • 如果您的发行版没有提供MariaDB Connector/C的最新版本,请检查MariaDB Connector Download page,它提供了主要发行版的最新版本。
  • 如果以上方法都不适用,请从源代码构建并安装MariaDB Connector/C。

另请注意,MariaDB服务器和MariaDB连接器/C是不同的软件包。

vwhgwdsa

vwhgwdsa2#

安装一个旧版本的mariadb为我做到了这一点,尤其是那些与1. 0。

pip install mariadb==1.0.11

我还需要在pycharm终端中运行它,使它与venv一起工作。
但是尝试安装最新的版本将抛出与问题中记录的相同的错误,无论我做什么。

相关问题