質問編集履歴
3
進展
test
CHANGED
File without changes
|
test
CHANGED
@@ -89,3 +89,15 @@
|
|
89
89
|
|
90
90
|
|
91
91
|
```
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
ターミナルにanadondaと入力したところ
|
96
|
+
|
97
|
+
```ここに言語を入力
|
98
|
+
|
99
|
+
zsh: /Users/現ユーザ名/anaconda3/bin/anaconda: bad interpreter: /Users/旧ユーザー名/opt/anaconda3/bin/python: no such file or directory
|
100
|
+
|
101
|
+
```
|
102
|
+
|
103
|
+
このエラーを手がかりに現在解決策を模索中です
|
2
zshrc_profileの内容
test
CHANGED
File without changes
|
test
CHANGED
@@ -57,3 +57,35 @@
|
|
57
57
|
/Users/{現ユーザー名}/.zshrc_profile:export:10: not valid in this context: /Users/{現ユーザー名}/anaconda3/etc/profile.d/conda.sh
|
58
58
|
|
59
59
|
```
|
60
|
+
|
61
|
+
と出ました。
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
### 補足
|
66
|
+
|
67
|
+
zshrc_protfileの内容です
|
68
|
+
|
69
|
+
```ここに言語を入力
|
70
|
+
|
71
|
+
export PATH="$HOME/.rbenv/bin:$PATH"
|
72
|
+
|
73
|
+
eval "$(rbenv init -)"
|
74
|
+
|
75
|
+
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
export PYENV_ROOT="$HOME/.pyenv"
|
80
|
+
|
81
|
+
export PATH="$PYENV_ROOT/bin:$PATH"
|
82
|
+
|
83
|
+
eval "$(pyenv init -)"
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
export PATH="/Users/現ユーザー名/anaconda3/bin:$PATH"source ~/anaconda3/etc/profile.d/conda.sh
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
```
|
1
試したことの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -40,4 +40,20 @@
|
|
40
40
|
|
41
41
|
|
42
42
|
|
43
|
+
また、
|
44
|
+
|
45
|
+
```ここに言語を入力
|
46
|
+
|
47
|
+
echo "source ~/anaconda3/etc/profile.d/conda.sh" >> ~/.zshrc_profile
|
48
|
+
|
49
|
+
```
|
50
|
+
|
51
|
+
|
52
|
+
|
43
|
-
|
53
|
+
上記のコードをターミナルに入力したところ
|
54
|
+
|
55
|
+
```ここに言語を入力
|
56
|
+
|
57
|
+
/Users/{現ユーザー名}/.zshrc_profile:export:10: not valid in this context: /Users/{現ユーザー名}/anaconda3/etc/profile.d/conda.sh
|
58
|
+
|
59
|
+
```
|