What is conda?: Conda is a package that is used to manage many different packages.
What is Anaconda?: Anaconda is a platform that includes many standard packages (e.g., conda and python). This is the easiest way to work on Python projects across different operating systems.
What is a conda environment?: You can think of a conda environment as a box containing all necessary elements you need for a specific project. It can help avoid potential issues like "cannot find package" or "You need Package A in version X but you have Package A in version Y", which may crash your code.