Hey, sure thing! Its alright, I used to get frustrated as well in the beginning. Patience and communities are the key to these struggles. Eventually you'll learn more about the environments that you use and become an expert. We are all here to support each other.
I used this guide, keep it as a reference just in case.
Make sure you install python first before you install anaconda just to be safe.
Here are the steps to install Anaconda on Ventura:
- Download the anaconda command line installer.
- Open up a Terminal Window and navigate to the directory where you downloaded your installer. (For example in my case it was in Downloads. So I would type "cd /Users/<yourUser>/Downloads").
- Run the installer script by running "Bash Anaconda3-2023.03-MacOSX-arm64.sh". (the .sh file you downloaded earlier)
- The license agreement will show up as you execute the .sh installer, hold "enter" until you reach the end of the agreement and type "yes" to accept it.
- Once you accept the license agreement, you will be asked to specify the installation location. I would recommend to use the default location. The installation process will begin then, it should take few minutes to complete.
- The installer will prompt you to initialize Anaconda by running "conda init", enter "yes". (In case you missed the option, run the following command "source /home/<yourUser>/anaconda3/bin/activate" then "conda init zsh"
- The installer finishes and displays a thank you message.
- (extra) you can auto-activate anaconda base environment as you open a terminal window by running "conda config --set auto_activate_base True". To turn off the auto activation, use the same command but replace "True" at the end of the command with "False".
You should be all good to go then.
Let me know if you need any further help or if you faced any issue.