質問編集履歴

7

試したことをさらに追加

2020/03/15 17:10

投稿

bokupiroki
bokupiroki

スコア54

test CHANGED
File without changes
test CHANGED
@@ -158,7 +158,7 @@
158
158
 
159
159
 
160
160
 
161
- ###追記:別のサイトを参考にして再挑戦
161
+ ###追記1:別のサイトを参考にして再挑戦
162
162
 
163
163
  https://blogenist.jp/2018/01/07/1756
164
164
 
@@ -200,6 +200,132 @@
200
200
 
201
201
 
202
202
 
203
+ ###追記2:OpenSSLとpythonのビルド
204
+
205
+ 最初に参考にしたサイト
206
+
207
+ https://netlog.jpn.org/r271-635/2018/12/sakura_python_pip_openssl.html
208
+
209
+ にもあるように、OpenSSLとpythonのビルドのコマンドは実行しています。
210
+
211
+ これらは特にエラーも出ずに進みました。
212
+
213
+
214
+
215
+ 以下サイトより引用
216
+
217
+ ```ここに言語を入力
218
+
219
+ $ wget https://www.openssl.org/source/openssl-1.0.2q.tar.gz
220
+
221
+ $ tar xvfz openssl-1.0.2q.tar.gz
222
+
223
+ $ cd openssl-1.0.2q
224
+
225
+ $ ./config --prefix=${HOME}/.local -fPIC
226
+
227
+ $ gmake
228
+
229
+ $ gmake test
230
+
231
+ $ gmake install
232
+
233
+
234
+
235
+ $ wget https://www.python.org/ftp/python/2.7.15/Python-2.7.15.tgz
236
+
237
+ $ tar xvfz Python-2.7.15.tgz
238
+
239
+ $ cd Python-2.7.15
240
+
241
+ $ env CXX=/usr/bin/g++ ./configure --prefix=${HOME}/.local --enable-unicode=ucs4
242
+
243
+ $ gmake
244
+
245
+ $ gmake install
246
+
247
+ ```
248
+
249
+ 引っかかるところとしては、.cshrcを説明の通りに書き直したつもりが、
250
+
251
+ 「source ~/.cshrc」コマンド叩くと何やらエラーっぽい文言が出ることです。
252
+
253
+ ```ここに言語を入力
254
+
255
+ [ユーザー名@www2346 ~]$ cat .cshrc(←catで中身を確認)
256
+
257
+
258
+
259
+ set path = ($HOME/.local/bin /sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/sbin /usr/local/bin /usr/X11R6/bin $HOME/bin)
260
+
261
+
262
+
263
+ setenv PYTHONPATH $HOME/.local/lib/python2.7/site-packages
264
+
265
+ setenv LD_LIBRARY_PATH $HOME/.local/lib
266
+
267
+
268
+
269
+ [ユーザー名@www2346 ~]$ source ~/.cshrc(←再認識させるためのコマンドを実行)
270
+
271
+ -bash: /home/ユーザー名/.cshrc: line 2: syntax error near unexpected token `('
272
+
273
+ -bash: /home/ユーザー名/.cshrc: line 2: `set path = ($HOME/.local/bin /sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/sbin /usr/local/bin /usr/X11R6/bin $HOME/bin)'
274
+
275
+ ```
276
+
277
+
278
+
279
+ また、手順に従ってその後のopen sslやpythonのバージョンを確認しましたが、
280
+
281
+ お手本とは異なる結果が返ってきました。
282
+
283
+
284
+
285
+ ↓お手本
286
+
287
+ ```ここに言語を入力
288
+
289
+ $ which python
290
+
291
+ /home/USER_NAME/.local/bin/python
292
+
293
+
294
+
295
+ $ python -c 'import ssl; print ssl.OPENSSL_VERSION'
296
+
297
+ OpenSSL 1.0.2q 20 Nov 2018
298
+
299
+
300
+
301
+ $ python --version
302
+
303
+ Python 2.7.15
304
+
305
+ ```
306
+
307
+ ↓自分の環境
308
+
309
+ ```ここに言語を入力
310
+
311
+ [ユーザー名@www2346 ~]$ which python
312
+
313
+ /usr/local/bin/python
314
+
315
+ [ユーザー名@www2346 ~]$ python -c 'import ssl; print ssl.OPENSSL_VERSION'
316
+
317
+ OpenSSL 0.9.8zf 19 Mar 2015
318
+
319
+ [ユーザー名@www2346 ~]$ python --version
320
+
321
+ Python 2.7.6
322
+
323
+ [ユーザー名@www2346 ~]$
324
+
325
+ ```
326
+
327
+
328
+
203
329
  ### 補足情報(FW/ツールのバージョンなど)
204
330
 
205
331
 

6

誤字修正

2020/03/15 17:10

投稿

bokupiroki
bokupiroki

スコア54

test CHANGED
File without changes
test CHANGED
@@ -66,7 +66,7 @@
66
66
 
67
67
  https://netlog.jpn.org/r271-635/2018/12/sakura_python_pip_openssl.html
68
68
 
69
-
69
+ (初回質問時に貼り間違えたので修正しました)
70
70
 
71
71
 
72
72
 

5

試したことの追記

2020/03/15 12:26

投稿

bokupiroki
bokupiroki

スコア54

test CHANGED
File without changes
test CHANGED
@@ -66,7 +66,7 @@
66
66
 
67
67
  https://netlog.jpn.org/r271-635/2018/12/sakura_python_pip_openssl.html
68
68
 
69
- (貼り間違えたので修正しました)
69
+
70
70
 
71
71
 
72
72
 
@@ -116,7 +116,11 @@
116
116
 
117
117
  エラー内容に
118
118
 
119
+ ```
120
+
119
- ```Could not fetch URL https://pypi.org/simple/pip/:```
121
+ Could not fetch URL https://pypi.org/simple/pip/:
122
+
123
+ ```
120
124
 
121
125
  とあることから
122
126
 
@@ -154,6 +158,48 @@
154
158
 
155
159
 
156
160
 
161
+ ###追記:別のサイトを参考にして再挑戦
162
+
163
+ https://blogenist.jp/2018/01/07/1756
164
+
165
+ を参考にして、試してみましたがうまくいきません。
166
+
167
+
168
+
169
+ ```ここに言語を入力
170
+
171
+ [ユーザー名@www2346 ~]$mkdir -p ~/.local/lib/python2.7/site-packages
172
+
173
+ [ユーザー名@www2346 ~]$ easy_install --prefix=~/.local pip
174
+
175
+ Searching for pip
176
+
177
+ Reading https://pypi.python.org/simple/pip/
178
+
179
+ Download error on https://pypi.python.org/simple/pip/: [Errno 1] _ssl.c:507: error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version -- Some packages may not be found!
180
+
181
+ Couldn't find index page for 'pip' (maybe misspelled?)
182
+
183
+ Scanning index of all packages (this may take a while)
184
+
185
+ Reading https://pypi.python.org/simple/
186
+
187
+ Download error on https://pypi.python.org/simple/: [Errno 1] _ssl.c:507: error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version -- Some packages may not be found!
188
+
189
+ No local packages or download links found for pip
190
+
191
+ error: Could not find suitable distribution for Requirement.parse('pip')
192
+
193
+ ```
194
+
195
+ 「easy_install --prefix=~/.local pip」でこけてしまいます。
196
+
197
+
198
+
199
+ さらに他のサイトもいくつか見ましたが、結局このコードが登場してそこから次へ進めませんでした。
200
+
201
+
202
+
157
203
  ### 補足情報(FW/ツールのバージョンなど)
158
204
 
159
205
 

4

参考サイトのURL修正

2020/03/15 12:25

投稿

bokupiroki
bokupiroki

スコア54

test CHANGED
File without changes
test CHANGED
@@ -60,7 +60,15 @@
60
60
 
61
61
  こちらのサイトを参考にpipのインストールを試みましたが、失敗します。
62
62
 
63
- https://blogenist.jp/2018/01/07/1756/
63
+ ~~https://blogenist.jp/2018/01/07/1756/~~
64
+
65
+
66
+
67
+ https://netlog.jpn.org/r271-635/2018/12/sakura_python_pip_openssl.html
68
+
69
+ (貼り間違えたので修正しました)
70
+
71
+
64
72
 
65
73
  ```ここに言語を入力
66
74
 

3

誤字修正

2020/03/15 01:45

投稿

bokupiroki
bokupiroki

スコア54

test CHANGED
File without changes
test CHANGED
@@ -132,7 +132,7 @@
132
132
 
133
133
  「要件を満たすpipのバージョンが見つからない」
134
134
 
135
- のような感じでしょか。
135
+ のような感じでしょか。
136
136
 
137
137
 
138
138
 

2

誤字修正

2020/03/14 08:58

投稿

bokupiroki
bokupiroki

スコア54

test CHANGED
File without changes
test CHANGED
@@ -82,7 +82,7 @@
82
82
 
83
83
  get-pip.py 100%[=====================>] 1.72M --.-KB/s in 0.04s
84
84
 
85
- (↑pitをwgetするところまでは成功)
85
+ (↑pipをwgetするところまでは成功)
86
86
 
87
87
 
88
88
 

1

タイトル修正

2020/03/14 08:58

投稿

bokupiroki
bokupiroki

スコア54

test CHANGED
@@ -1 +1 @@
1
- さくらインターネットでpythopipのインストールができない
1
+ ンタルサバー上のpythonを利用しているがpipのインストールができない
test CHANGED
File without changes