お世話になっております。
Python3 + django
で開発を行い、今まで、デフォルトのSQLITE3を使用していたのですが、今後のことを考慮し、MySQLに変更しようとしております。最初に以下を実行しました。
$ sudo apt-get install python3-dev default-libmysqlclient-dev build-essential
続いて、コチラも実行。
pip3 install pymysql
その後に
pip install mysqlclient
を行おうとすると、エラーとなります。各バージョンのmysqlclientを検索し、DLしようとしているのですが、見つかりませんと出ます。途中のエラーは
WARNING: Discarding https://files.pythonhosted.org/packages/6b/ba/4729d99e85a0a35bb46d55500570de05b4af10431cef174b6da9f58a0e50/mysqlclient-1.3.1.tar.gz#sha256=3549e8a61f10c8cd8eac6581d3f44d0594f535fb7b29e6090db3a0bc547b25ad (from https://pypi.org/simple/mysqlclient/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output. Using cached mysqlclient-1.3.0.tar.gz (76 kB) ERROR: Command errored out with exit status 1: command: /mnt/c/www/python/mining/bin/python -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-jm63np9s/mysqlclient_990a0a09136c4d1386217bdcc7cef2ca/setup.py'"'"'; __file__='"'"'/tmp/pip-install-jm63np9s/mysqlclient_990a0a09136c4d1386217bdcc7cef2ca/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /tmp/pip-pip-egg-info-p_7x9sit cwd: /tmp/pip-install-jm63np9s/mysqlclient_990a0a09136c4d1386217bdcc7cef2ca/ Complete output (10 lines): /bin/sh: 1: mysql_config: not found Traceback (most recent call last): File "<string>", line 1, in <module> File "/tmp/pip-install-jm63np9s/mysqlclient_990a0a09136c4d1386217bdcc7cef2ca/setup.py", line 17, in <module> metadata, options = get_config() File "/tmp/pip-install-jm63np9s/mysqlclient_990a0a09136c4d1386217bdcc7cef2ca/setup_posix.py", line 47, in get_config libs = mysql_config("libs_r") File "/tmp/pip-install-jm63np9s/mysqlclient_990a0a09136c4d1386217bdcc7cef2ca/setup_posix.py", line 29, in mysql_config raise EnvironmentError("%s not found" % (mysql_config.path,)) OSError: mysql_config not found
最後のエラーは
WARNING: Discarding https://files.pythonhosted.org/packages/6a/91/bdfe808fb5dc99a5f65833b370818161b77ef6d1e19b488e4c146ab615aa/mysqlclient-1.3.0.tar.gz#sha256=06eb5664e3738b283ea2262ee60ed83192e898f019cc7ff251f4d05a564ab3b7 (from https://pypi.org/simple/mysqlclient/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output. ERROR: Could not find a version that satisfies the requirement mysqlclient (from versions: 1.3.0, 1.3.1, 1.3.2, 1.3.3, 1.3.4, 1.3.5, 1.3.6, 1.3.7, 1.3.8, 1.3.9, 1.3.10, 1.3.11rc1, 1.3.11, 1.3.12, 1.3.13, 1.3.14, 1.4.0rc1, 1.4.0rc2, 1.4.0rc3, 1.4.0, 1.4.1, 1.4.2, 1.4.2.post1, 1.4.3, 1.4.4, 1.4.5, 1.4.6, 2.0.0, 2.0.1, 2.0.2, 2.0.3) ERROR: No matching distribution found for mysqlclient
となります。おわかりになる方いらっしゃいましたら、よろしくお願い致します。
回答2件
あなたの回答
tips
プレビュー