質問編集履歴
3
which pythonの結果 /etc/redhat-releaseの結果を貼りました
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -24,4 +24,16 @@
|
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
#vmstat
|
|
27
|
-

|
|
27
|
+

|
|
28
|
+
|
|
29
|
+
# which pytyhon
|
|
30
|
+
```
|
|
31
|
+
$ which python
|
|
32
|
+
/.pyenv/shims/python
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
# cat /etc/redhat-release
|
|
36
|
+
```
|
|
37
|
+
$ cat /etc/redhat-release
|
|
38
|
+
CentOS Linux release 7.4.1708 (Core)
|
|
39
|
+
```
|
2
vmstat記入
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -21,4 +21,7 @@
|
|
|
21
21
|
```
|
|
22
22
|
$ python
|
|
23
23
|
killed
|
|
24
|
-
```
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
#vmstat
|
|
27
|
+

|
1
os情報とpython情報を記載
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
###前提・実現したいこと
|
|
2
|
+
OSとVersion
|
|
3
|
+
inux version 3.10.0-693.2.2.el7.x86_64
|
|
2
4
|
|
|
5
|
+
|
|
6
|
+
Python pyenvでinstallして3.6.1です
|
|
7
|
+
|
|
3
8
|
さくらvpsのコンソールでpythonを実行しようとすると、
|
|
4
9
|
|
|
5
10
|
```
|