Getting started with Anaconda and Python on a Mac

Поделиться
HTML-код
  • Опубликовано: 1 окт 2024

Комментарии • 13

  • @rangho10
    @rangho10 12 дней назад

    Syper clear and helpful video. Thank you Susan!

  • @khaliunbattogtokh7263
    @khaliunbattogtokh7263 23 дня назад

    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 :)

  • @richard_loosemore
    @richard_loosemore 2 месяца назад +1

    I hope your channel grows: your videos are among the clearest that I know.

  • @roberto_camp
    @roberto_camp Месяц назад

    Great video Susan! Super-concise and technically accurate.

  • @arpandutta3591
    @arpandutta3591 Месяц назад

    Amazing help, and a big fan of your wesbite as well, keep it up!

  • @karinamendonca945
    @karinamendonca945 Месяц назад

    Thanks for the video! Best explanation I have seen!

  • @johnfrancis9668
    @johnfrancis9668 6 месяцев назад

    Best explanation of ALL the possible on RUclips

  • @blakeaghili4681
    @blakeaghili4681 Месяц назад

    very helpful thanks

  • @JaydenRussell-dx2ep
    @JaydenRussell-dx2ep Месяц назад

    Do you need to use i-term for terminal , Im using the default terminal with shell .zsh but the commands cuda arent regonized

    • @JaydenRussell-dx2ep
      @JaydenRussell-dx2ep Месяц назад

      *conda

    • @codewithsusan
      @codewithsusan  Месяц назад +1

      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
      #

    • @JaydenRussell-dx2ep
      @JaydenRussell-dx2ep Месяц назад

      @@codewithsusan thanks this seemed to do the trick !