質問編集履歴
1
個人情報の保護
title
CHANGED
File without changes
|
body
CHANGED
@@ -7,11 +7,11 @@
|
|
7
7
|
CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.
|
8
8
|
If your shell is Bash or a Bourne variant, enable conda for the current user with
|
9
9
|
|
10
|
-
$ echo ". C:\Users\
|
10
|
+
$ echo ". C:\Users\user\Anaconda3/etc/profile.d/conda.sh" >> ~/.bashrc
|
11
11
|
|
12
12
|
or, for all users, enable conda with
|
13
13
|
|
14
|
-
$ sudo ln -s C:\Users\
|
14
|
+
$ sudo ln -s C:\Users\user\Anaconda3/etc/profile.d/conda.sh /etc/profile.d/conda.sh
|
15
15
|
|
16
16
|
The options above will permanently enable the 'conda' command, but they do NOT
|
17
17
|
put conda's base (root) environment on PATH. To do so, run
|
@@ -25,7 +25,7 @@
|
|
25
25
|
Previous to conda 4.4, the recommended way to activate conda was to modify PATH in
|
26
26
|
your ~/.bashrc file. You should manually remove the line that looks like
|
27
27
|
|
28
|
-
export PATH="C:\Users\
|
28
|
+
export PATH="C:\Users\user\Anaconda3/bin:$PATH"
|
29
29
|
|
30
30
|
^^^ The above line should NO LONGER be in your ~/.bashrc file! ^^^
|
31
31
|
|