質問編集履歴

1

t

2018/04/23 04:46

投稿

SpecialTukimiya
SpecialTukimiya

スコア192

test CHANGED
File without changes
test CHANGED
@@ -33,3 +33,129 @@
33
33
 
34
34
 
35
35
  #
36
+
37
+
38
+
39
+ #私は下記を試しました。
40
+
41
+ ```
42
+
43
+ $ python3.5 -m pip install python-opencv
44
+
45
+ Collecting python-opencv
46
+
47
+ Could not find a version that satisfies the requirement python-opencv (from versions: )
48
+
49
+
50
+
51
+ No matching distribution found for python-opencv
52
+
53
+
54
+
55
+ $ sudo python3.5 -m pip install python-opencv
56
+
57
+
58
+
59
+ Could not find a version that satisfies the requirement python-opencv (from versions: )
60
+
61
+ No matching distribution found for python-opencv
62
+
63
+
64
+
65
+ $ sudo python3.5 -m pip3 install python-opencv
66
+
67
+ /usr/bin/python3.5: No module named pip3
68
+
69
+
70
+
71
+ $ sudo python3.5 -m pip install python-opencv
72
+
73
+
74
+
75
+ Could not find a version that satisfies the requirement python-opencv (from versions: )
76
+
77
+ No matching distribution found for python-opencv
78
+
79
+
80
+
81
+ $ sudo python3.5.3 -m pip install python-opencv
82
+
83
+ sudo: python3.5.3: コマンドが見つかりません
84
+
85
+
86
+
87
+ $ python3.5.3 -m pip install python-opencv
88
+
89
+ python3.5.3: コマンドが見つかりません
90
+
91
+
92
+
93
+ $ python3.5.3 -m pip3 install python-opencv
94
+
95
+ python3.5.3: コマンドが見つかりません
96
+
97
+
98
+
99
+ python3.5.3 -m pip3 install opencv
100
+
101
+ python3.5.3: コマンドが見つかりません
102
+
103
+
104
+
105
+ $ python3.5.3 -m pip install opencv
106
+
107
+ python3.5.3: コマンドが見つかりません
108
+
109
+
110
+
111
+ $ python3.5 -m pip install opencv
112
+
113
+ Collecting opencv
114
+
115
+ Could not find a version that satisfies the requirement opencv (from versions: )
116
+
117
+ No matching distribution found for opencv
118
+
119
+
120
+
121
+ $ python3.5 -m pip3 install opencv
122
+
123
+ /usr/bin/python3.5: No module named pip3
124
+
125
+
126
+
127
+ $ python3.5 -m pip install opencv
128
+
129
+ Collecting opencv
130
+
131
+ Could not find a version that satisfies the requirement opencv (from versions: )
132
+
133
+ No matching distribution found for opencv
134
+
135
+
136
+
137
+ $ python3.5 -m pip install python-opencv
138
+
139
+ Collecting python-opencv
140
+
141
+ Could not find a version that satisfies the requirement python-opencv (from versions: )
142
+
143
+ No matching distribution found for python-opencv
144
+
145
+
146
+
147
+ $ python3.5 pip install python-opencv
148
+
149
+ python3.5: can't open file 'pip': [Errno 2] No such file or directory'
150
+
151
+
152
+
153
+ $ python3.5 pip3 install python-opencv
154
+
155
+ python3.5: can't open file 'pip3': [Errno 2] No such file or directory
156
+
157
+
158
+
159
+
160
+
161
+ ```