日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > 数据库 >内容正文

数据库

ubuntu18.04安装python的mysqlclient==1.4.6报错ERROR Command errored out with exit status 1python setup

發布時間:2024/9/20 数据库 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 ubuntu18.04安装python的mysqlclient==1.4.6报错ERROR Command errored out with exit status 1python setup 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

安裝python的mysqlclient==1.4.6報錯
環境:
ubuntu18.04
python 3.7.2
Django 2.2

想要使用Django來操作MySQL,報錯:

LookupError: No installed app with label 'admin'.
1
度娘搜索發現想要用Django來操作MySQL,還需要安裝一個驅動程序。在Python3中,選擇用mysqlclient做驅動。

安裝mysqlclient出現報錯:

?ERROR: Command errored out with exit status 1:
? ? ?command: /home/renlei/.virtualenvs/mxonline/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-gfcy3s5k/mysqlclient/setup.py'"'"'; __file__='"'"'/tmp/pip-install-gfcy3s5k/mysqlclient/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /tmp/pip-install-gfcy3s5k/mysqlclient/pip-egg-info
? ? ? ? ?cwd: /tmp/pip-install-gfcy3s5k/mysqlclient/
? ? Complete output (12 lines):
? ? /bin/sh: 1: mysql_config: not found
? ? /bin/sh: 1: mariadb_config: not found
? ? /bin/sh: 1: mysql_config: not found
? ? Traceback (most recent call last):
? ? ? File "<string>", line 1, in <module>
? ? ? File "/tmp/pip-install-gfcy3s5k/mysqlclient/setup.py", line 16, in <module>
? ? ? ? metadata, options = get_config()
? ? ? File "/tmp/pip-install-gfcy3s5k/mysqlclient/setup_posix.py", line 61, in get_config
? ? ? ? libs = mysql_config("libs")
? ? ? File "/tmp/pip-install-gfcy3s5k/mysqlclient/setup_posix.py", line 29, in mysql_config
? ? ? ? raise EnvironmentError("%s not found" % (_mysql_config_path,))
? ? OSError: mysql_config not found
? ? ----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
解決方案:

1.先安裝 客戶端程序:

?? ?sudo apt install -y mysql-client
1
2.基于python安裝mysqlclient需要依次安裝以下庫:

?? ? sudo apt-get install libmysqlclient-dev
?? ? sudo apt install libssl-dev?
?? ? sudo apt install libcrypto++-dev?
1
2
3
3.使用pip安裝mysqlclient

sudo pip3 install mysqlclient
————————————————
版權聲明:本文為CSDN博主「rl1415977534」的原創文章,遵循CC 4.0 BY-SA版權協議,轉載請附上原文出處鏈接及本聲明。
原文鏈接:https://blog.csdn.net/rl1415977534/article/details/104436621/

與50位技術專家面對面20年技術見證,附贈技術全景圖

總結

以上是生活随笔為你收集整理的ubuntu18.04安装python的mysqlclient==1.4.6报错ERROR Command errored out with exit status 1python setup的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。