Can your run your code and have your results show in console like in R? If that's possible, why are you using the command line? I don't know much about Python :)
iTerm shouldn't be necessary. The underlying bash program (.zsh) is what is relevant. You can check your zsh config file at ~/.zsrc and make sure it has the Conda initialization code (below). This should have been added automatically for you during installation, but if not you can manually add it. After making changes to this config file, make sure you close and re-open your command line program to make sure the changes take effect. # >>> conda initialize >>> # !! Contents within this block are managed by 'conda init' !! __conda_setup="$('/opt/miniconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)" if [ $? -eq 0 ]; then eval "$__conda_setup" else if [ -f "/opt/miniconda3/etc/profile.d/conda.sh" ]; then . "/opt/miniconda3/etc/profile.d/conda.sh" else export PATH="/opt/miniconda3/bin:$PATH" fi fi unset __conda_setup #
I hope your channel grows: your videos are among the clearest that I know.
Thanks!
Great video Susan! Super-concise and technically accurate.
This video was really helpful, pls do more of them...
Very clear and helpful. Thx.
Best explanation of ALL the possible on RUclips
Syper clear and helpful video. Thank you Susan!
Thanks for the video! Best explanation I have seen!
Amazing help, and a big fan of your wesbite as well, keep it up!
I keep getting an "installation failed" message. running Sonoma. please help, someone!
Can your run your code and have your results show in console like in R? If that's possible, why are you using the command line? I don't know much about Python :)
Do you need to use i-term for terminal , Im using the default terminal with shell .zsh but the commands cuda arent regonized
*conda
iTerm shouldn't be necessary. The underlying bash program (.zsh) is what is relevant. You can check your zsh config file at ~/.zsrc and make sure it has the Conda initialization code (below). This should have been added automatically for you during installation, but if not you can manually add it. After making changes to this config file, make sure you close and re-open your command line program to make sure the changes take effect.
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/opt/miniconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/opt/miniconda3/etc/profile.d/conda.sh" ]; then
. "/opt/miniconda3/etc/profile.d/conda.sh"
else
export PATH="/opt/miniconda3/bin:$PATH"
fi
fi
unset __conda_setup
#
@@codewithsusan thanks this seemed to do the trick !
very helpful thanks