Anaconda Environment Setup
Learning objectives Create a dedicated conda environment for the curriculum. Install Python and key packages in that environment. Activate and use the environment for running exercises. Why use a conda environment? A conda environment isolates the curriculum’s Python and packages from your system or other projects. You can use a specific Python version and install NumPy, PyTorch, Gym, etc. without affecting other work. If something breaks, you can recreate the environment. ...