質問編集履歴

3

bash追記

2020/05/01 01:30

投稿

maronie
maronie

スコア13

test CHANGED
File without changes
test CHANGED
@@ -52,6 +52,8 @@
52
52
 
53
53
  OS=macOS Catalina
54
54
 
55
+ bash
56
+
55
57
 
56
58
 
57
59
  現状以下のバージョンです。

2

試した手順を追記

2020/05/01 01:30

投稿

maronie
maronie

スコア13

test CHANGED
File without changes
test CHANGED
@@ -27,6 +27,26 @@
27
27
  ↓試した記事
28
28
 
29
29
  https://qiita.com/1000ch/items/93841f76ea52551b6a97
30
+
31
+
32
+
33
+ ↓試した手順
34
+
35
+ ▼pyenv で Pythonをインストール`$ pyenv install 3.5.9`
36
+
37
+ ▼上記記事の指示のまま`$ pyenv rehash`
38
+
39
+ ▼使う Python を指定する`$ pyenv global 3.5.9`
40
+
41
+ ▼以下の通り、パスが .pyenv 配下の pythonを向かない。
42
+
43
+ ```Python
44
+
45
+ $ which python
46
+
47
+ /usr/bin/python
48
+
49
+ ```
30
50
 
31
51
 
32
52
 

1

pyenvのファイルパスを追記

2020/05/01 01:29

投稿

maronie
maronie

スコア13

test CHANGED
File without changes
test CHANGED
@@ -36,7 +36,7 @@
36
36
 
37
37
  現状以下のバージョンです。
38
38
 
39
- ```python
39
+ ```Python
40
40
 
41
41
  $ python --version
42
42
 
@@ -48,7 +48,7 @@
48
48
 
49
49
  Python2.7.16のファイルパスは以下です。
50
50
 
51
- ```python
51
+ ```Python
52
52
 
53
53
  $ which python
54
54
 
@@ -58,4 +58,16 @@
58
58
 
59
59
 
60
60
 
61
+ pyenvのファイルパス
62
+
63
+ ```Python
64
+
65
+ $ which pyenv
66
+
67
+ /usr/local/bin/pyenv
68
+
69
+ ```
70
+
71
+
72
+
61
73
  どうぞよろしくお願い申し上げます。