質問編集履歴

2

試したことを追記しました。

2019/02/07 05:46

投稿

ruuusaamarki
ruuusaamarki

スコア468

test CHANGED
File without changes
test CHANGED
@@ -134,6 +134,32 @@
134
134
 
135
135
 
136
136
 
137
+ ###試したこと2
138
+
139
+
140
+
141
+ anacondaをインストールしたディレクトリ名を日本語にしてしまったので
142
+
143
+ 一度studyという名前に変えて、.bash_profileと.bashrc内の
144
+
145
+ パス指定も合わせて変更してみました。
146
+
147
+ これでも同様に立ち上がらなかったので戻したところ
148
+
149
+ condaコマンドが作動しました。
150
+
151
+
152
+
153
+ ```
154
+
155
+ conda --version
156
+
157
+ conda 4.5.12
158
+
159
+ ```
160
+
161
+
162
+
137
163
  ### 質問内容
138
164
 
139
165
  ・一度アンインストールをしたいのですが

1

設定ファイルを追記しました。

2019/02/07 05:45

投稿

ruuusaamarki
ruuusaamarki

スコア468

test CHANGED
File without changes
test CHANGED
@@ -46,6 +46,76 @@
46
46
 
47
47
 
48
48
 
49
+ ###設定ファイル
50
+
51
+ ```
52
+
53
+ cat .bash_profile
54
+
55
+ export PS1='\u:\w $'
56
+
57
+ export PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin
58
+
59
+ #alias python=python3
60
+
61
+ # added by Anaconda3 2018.12 installer
62
+
63
+ # >>> conda init >>>
64
+
65
+ # !! Contents within this block are managed by 'conda init' !!
66
+
67
+ __conda_setup="$(CONDA_REPORT_ERRORS=false '/Users/example/勉強用/Django/anaconda3/bin/conda' shell.bash hook 2> /dev/null)"
68
+
69
+ if [ $? -eq 0 ]; then
70
+
71
+ \eval "$__conda_setup"
72
+
73
+ else
74
+
75
+ if [ -f "/Users/example/勉強用/Django/anaconda3/etc/profile.d/conda.sh" ]; then
76
+
77
+ . "/Users/example/勉強用/Django/anaconda3/etc/profile.d/conda.sh"
78
+
79
+ CONDA_CHANGEPS1=false conda activate base
80
+
81
+ else
82
+
83
+ \export PATH="/Users/example/勉強用/Django/anaconda3/bin:$PATH"
84
+
85
+ fi
86
+
87
+ fi
88
+
89
+ unset __conda_setup
90
+
91
+ # <<< conda init <<<
92
+
93
+
94
+
95
+
96
+
97
+ cat .bashrc
98
+
99
+ export PS1='\u:\w $'
100
+
101
+ export PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin
102
+
103
+ #alias python=python3
104
+
105
+
106
+
107
+
108
+
109
+ cat .bash_profile-anaconda3.bak
110
+
111
+ export PS1='\u:\w $'
112
+
113
+ export PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin
114
+
115
+ ```
116
+
117
+
118
+
49
119
  ### 試したこと
50
120
 
51
121