質問編集履歴

2

途中のエラーを追加

2021/08/30 02:01

投稿

kutu
kutu

スコア257

test CHANGED
File without changes
test CHANGED
@@ -26,7 +26,45 @@
26
26
 
27
27
  ```
28
28
 
29
- を行おうとすると、エラーとなります。各バージョンのmysqlclientを検索し、DLしようとしているのですが、見つかりませんと出ます。最後のエラーは
29
+ を行おうとすると、エラーとなります。各バージョンのmysqlclientを検索し、DLしようとしているのですが、見つかりませんと出ます。途中のエラーは
30
+
31
+ ```
32
+
33
+ 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.
34
+
35
+ Using cached mysqlclient-1.3.0.tar.gz (76 kB)
36
+
37
+ ERROR: Command errored out with exit status 1:
38
+
39
+ 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
40
+
41
+ cwd: /tmp/pip-install-jm63np9s/mysqlclient_990a0a09136c4d1386217bdcc7cef2ca/
42
+
43
+ Complete output (10 lines):
44
+
45
+ /bin/sh: 1: mysql_config: not found
46
+
47
+ Traceback (most recent call last):
48
+
49
+ File "<string>", line 1, in <module>
50
+
51
+ File "/tmp/pip-install-jm63np9s/mysqlclient_990a0a09136c4d1386217bdcc7cef2ca/setup.py", line 17, in <module>
52
+
53
+ metadata, options = get_config()
54
+
55
+ File "/tmp/pip-install-jm63np9s/mysqlclient_990a0a09136c4d1386217bdcc7cef2ca/setup_posix.py", line 47, in get_config
56
+
57
+ libs = mysql_config("libs_r")
58
+
59
+ File "/tmp/pip-install-jm63np9s/mysqlclient_990a0a09136c4d1386217bdcc7cef2ca/setup_posix.py", line 29, in mysql_config
60
+
61
+ raise EnvironmentError("%s not found" % (mysql_config.path,))
62
+
63
+ OSError: mysql_config not found
64
+
65
+ ```
66
+
67
+ 最後のエラーは
30
68
 
31
69
 
32
70
 

1

事前に行ったコマンドを記載

2021/08/30 02:01

投稿

kutu
kutu

スコア257

test CHANGED
File without changes
test CHANGED
@@ -2,9 +2,15 @@
2
2
 
3
3
  Python3 + django
4
4
 
5
- で開発を行い、今まで、デフォルトのSQLITE3を使用していたのですが、今後のことを考慮し、MySQLに変更しようとしております。
5
+ で開発を行い、今まで、デフォルトのSQLITE3を使用していたのですが、今後のことを考慮し、MySQLに変更しようとしております。最初に以下を実行しました。
6
6
 
7
+ ```
7
8
 
9
+ $ sudo apt-get install python3-dev default-libmysqlclient-dev build-essential
10
+
11
+ ```
12
+
13
+ 続いて、コチラも実行。
8
14
 
9
15
  ```
10
16
 
@@ -12,9 +18,7 @@
12
18
 
13
19
  ```
14
20
 
15
- は行えたのですが、その後に
21
+ その後に
16
-
17
-
18
22
 
19
23
  ```
20
24