質問編集履歴

1

質問の内容について

2019/06/27 19:41

投稿

_toy
_toy

スコア28

test CHANGED
File without changes
test CHANGED
@@ -16,23 +16,91 @@
16
16
 
17
17
  教えていただけると嬉しいです。
18
18
 
19
+
20
+
21
+ すいません、再編集させていただきます。
22
+
23
+ 下記から新しく質問したい内容です。
24
+
25
+ まずMacの場合、env PYTHON_CONFIGURE_OPTS="--enable-framework" pyenv install 3.6.3を
26
+
27
+ しろとあったので行った結果でたエラーが(1)の方です。
28
+
29
+ また教えていただいたpip install -r requirements.txtを行った結果のエラーが(2)です。
30
+
31
+ 全く何を言っているのかわからないので教えていただけると嬉しいです。
32
+
33
+ よろしくお願いします。
34
+
19
35
  ### 発生している問題・エラーメッセージ
20
36
 
21
37
 
22
38
 
23
39
  ```
24
40
 
25
- エラーメッセージ
41
+ エラーメッセージ(1)
26
42
 
27
- (most recent call last):
43
+ python-build: use openssl from homebrew
28
44
 
29
- File "src/reversi_zero/run.py", line 4, in <module>
45
+ python-build: use readline from homebrew
30
46
 
31
- from dotenv import load_dotenv, find_dotenv
47
+ Downloading Python-3.6.3.tar.xz...
32
48
 
49
+ -> https://www.python.org/ftp/python/3.6.3/Python-3.6.3.tar.xz
50
+
51
+ Installing Python-3.6.3...
52
+
53
+ python-build: use readline from homebrew
54
+
55
+
56
+
57
+ BUILD FAILED (OS X 10.14.5 using python-build 20180424)
58
+
59
+
60
+
61
+ Inspect or clean up the working tree at /var/folders/wk/l28786w507n9n_r0hllk6jn80000gn/T/python-build.20190628042628.24585
62
+
63
+ Results logged to /var/folders/wk/l28786w507n9n_r0hllk6jn80000gn/T/python-build.20190628042628.24585.log
64
+
65
+
66
+
67
+ Last 10 log lines:
68
+
69
+ File "/private/var/folders/wk/l28786w507n9n_r0hllk6jn80000gn/T/python-build.20190628042628.24585/Python-3.6.3/Lib/ensurepip/__main__.py", line 4, in <module>
70
+
71
+ ensurepip._main()
72
+
73
+ File "/private/var/folders/wk/l28786w507n9n_r0hllk6jn80000gn/T/python-build.20190628042628.24585/Python-3.6.3/Lib/ensurepip/__init__.py", line 189, in _main
74
+
75
+ default_pip=args.default_pip,
76
+
77
+ File "/private/var/folders/wk/l28786w507n9n_r0hllk6jn80000gn/T/python-build.20190628042628.24585/Python-3.6.3/Lib/ensurepip/__init__.py", line 102, in bootstrap
78
+
79
+ _run_pip(args + [p[0] for p in _PROJECTS], additional_paths)
80
+
81
+ File "/private/var/folders/wk/l28786w507n9n_r0hllk6jn80000gn/T/python-build.20190628042628.24585/Python-3.6.3/Lib/ensurepip/__init__.py", line 27, in _run_pip
82
+
83
+ import pip
84
+
33
- ModuleNotFoundError: No module named 'dotenv'
85
+ zipimport.ZipImportError: can't decompress data; zlib not available
86
+
87
+ make: *** [install] Error 1
88
+
89
+
34
90
 
35
91
  ```
92
+
93
+ ```
94
+
95
+ エラーメッセージ(2)
96
+
97
+ Could not find a version that satisfies the requirement tensorboard==1.0.0a6 (from -r requirements.txt (line 58)) (from versions: 1.6.0rc0, 1.6.0, 1.7.0, 1.8.0, 1.9.0, 1.10.0, 1.11.0, 1.12.0, 1.12.1, 1.12.2, 1.13.0, 1.13.1, 1.14.0)
98
+
99
+ No matching distribution found for tensorboard==1.0.0a6 (from -r requirements.txt (line 58))
100
+
101
+ ```
102
+
103
+
36
104
 
37
105
 
38
106