python - How to use Anaconda on mac? -
i trying learn bit deep neural nets project. anyways trying set , having problems getting environment start in anaconda.
i click open terminal shown below in anaconda. opens terminal following commands:
/users/m/.anaconda/navigator/a.tool ; exit; ╭─ ~ 19:17 ╰─ /users/m/.anaconda/navigator/a.tool ; exit; /users/m/.anaconda/navigator/a.tool: line 1: syntax error near unexpected token `(' /users/m/.anaconda/navigator/a.tool: line 1: `bash --init-file <(echo "source activate /users/m/anaconda/envs/fastai;")' [process completed]
inspecting a.tool, contains this:
bash --init-file <(echo "source activate /users/m/anaconda/envs/fastai;")
i thought might related zsh or bash, no shell run it. has come across before? don't necessary need able start gui, appears cli environment activation not working. need able activate environment somehow, preferably in zsh.
─ ~ 19:20 ╰─ bash --init-file <(echo "source activate /users/m/anaconda/envs/fastai;") bash: ����: command not found bash-3.2$ bash bash-3.2$ bash --init-file <(echo "source activate /users/m/anaconda/envs/fastai;") bash: ����: command not found bash-3.2$ sh sh-3.2$ bash --init-file <(echo "source activate /users/m/anaconda/envs/fastai;") sh: syntax error near unexpected token `(' sh-3.2$ source activate /users/m/anaconda/envs/fastai; sh: ����: command not found sh-3.2$ bash bash-3.2$ source activate /users/m/anaconda/envs/fastai; bash: ����: command not found bash-3.2$ zsh ╭─ ~ 19:58 ╰─ source activate /users/m/anaconda/envs/fastai; /usr/local/bin/activate:1: command not found: \m-o\m-z\m-m\m-~^g /usr/local/bin/activate:3: unmatched " /usr/local/bin/activate:2: parse error in command substitution /usr/local/bin/activate:2: permission denied: /usr/local/bin/activate:2: command not found: ^x^a [2] 72354 exit 126 | 72355 exit 127
Comments
Post a Comment