質問編集履歴
6
title
CHANGED
File without changes
|
body
CHANGED
@@ -29,4 +29,25 @@
|
|
29
29
|
pyenvのインストール方法:
|
30
30
|
[リンク内容](http://qiita.com/glostuan/items/6030e309542615470e0d)
|
31
31
|
[リンク内容](http://qiita.com/akito1986/items/be5dcd1a502aaf22010b)
|
32
|
-
等のサイト様を参考...
|
32
|
+
等のサイト様を参考...
|
33
|
+
|
34
|
+
**さらに追記**
|
35
|
+
```UTF-8
|
36
|
+
[root@vultr ~]# pyenv
|
37
|
+
pyenv 1.2.1-17-g907a86b
|
38
|
+
Usage: pyenv <command> [<args>]
|
39
|
+
|
40
|
+
Some useful pyenv commands are:
|
41
|
+
commands List all available pyenv commands
|
42
|
+
local Set or show the local application-specific Python version
|
43
|
+
global Set or show the global Python version
|
44
|
+
shell Set or show the shell-specific Python version
|
45
|
+
rehash Rehash pyenv shims (run this after installing executables)
|
46
|
+
version Show the current Python version and its origin
|
47
|
+
versions List all Python versions available to pyenv
|
48
|
+
which Display the full path to an executable
|
49
|
+
whence List all Python versions that contain the given executable
|
50
|
+
|
51
|
+
See `pyenv help <command>' for information on a specific command.
|
52
|
+
For full documentation, see: https://github.com/pyenv/pyenv#readme
|
53
|
+
```
|
5
title
CHANGED
File without changes
|
body
CHANGED
@@ -27,6 +27,6 @@
|
|
27
27
|
使用OS:
|
28
28
|
CentOS Linux release 7.4.1708 (Core)
|
29
29
|
pyenvのインストール方法:
|
30
|
-
|
30
|
+
[リンク内容](http://qiita.com/glostuan/items/6030e309542615470e0d)
|
31
|
-
|
31
|
+
[リンク内容](http://qiita.com/akito1986/items/be5dcd1a502aaf22010b)
|
32
32
|
等のサイト様を参考...
|
4
title
CHANGED
File without changes
|
body
CHANGED
@@ -21,4 +21,12 @@
|
|
21
21
|
```
|
22
22
|
エラーが返ってきました。
|
23
23
|
|
24
|
-
解決の方法ご存知の方がいらっしゃればお願いします
|
24
|
+
解決の方法ご存知の方がいらっしゃればお願いします
|
25
|
+
|
26
|
+
**追記**
|
27
|
+
使用OS:
|
28
|
+
CentOS Linux release 7.4.1708 (Core)
|
29
|
+
pyenvのインストール方法:
|
30
|
+
https://qiita.com/glostuan/items/6030e309542615470e0d
|
31
|
+
https://qiita.com/akito1986/items/be5dcd1a502aaf22010b
|
32
|
+
等のサイト様を参考...
|
3
title
CHANGED
File without changes
|
body
CHANGED
File without changes
|
2
title
CHANGED
File without changes
|
body
CHANGED
@@ -7,11 +7,18 @@
|
|
7
7
|
```
|
8
8
|
しか出てきませんでした。
|
9
9
|
そこで
|
10
|
+
```UTF-8
|
10
|
-
|
11
|
+
pyenv install 2.7.10
|
11
|
-
pyenv: no such command `install'
|
12
|
+
pyenv: no such command `install'
|
13
|
+
```
|
14
|
+
と返されてしまいました。
|
12
15
|
|
13
16
|
そこでpyenvをアップデートしようと
|
17
|
+
```UTF-8
|
14
|
-
|
18
|
+
pip install --upgrade pyenv
|
15
19
|
Could not find a version that satisfies the requirement pyenv (from versions: )
|
16
|
-
No matching distribution found for pyenv
|
20
|
+
No matching distribution found for pyenv
|
21
|
+
```
|
17
|
-
エラーが返ってきました。
|
22
|
+
エラーが返ってきました。
|
23
|
+
|
24
|
+
解決の方法ご存知の方がいらっしゃればお願いします
|
1
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
僕はpythonを2と3のふたつのバージョンで使い分けをしたくてpyenvを使用しています。
|
2
2
|
|
3
3
|
ある時、python2に切り替えようと
|
4
|
+
```UTF-8
|
4
|
-
|
5
|
+
pyenv versions
|
5
|
-
system
|
6
|
+
system
|
7
|
+
```
|
6
8
|
しか出てきませんでした。
|
7
9
|
そこで
|
8
10
|
'pyenv install 2.7.10
|