Setting up notebook environments
Python is one of the most popular programming languages that’s widely used for data analysis. Its advantage comes from dynamic typing and being compile-free. With its flexibility, it has become the language that data scientists use the most. In this section, we will introduce how to set up a Python environment for a DL project using Anaconda and Preferred Installer Program (PIP). These tools allow you to create a distinct environment for every project while simplifying package management. Anaconda provides a desktop application with a GUI called Anaconda Navigator. We will walk you through how to set up a Python environment and install popular Python libraries for DL projects such as TensorFlow, PyTorch, NumPy, pandas, scikit-learn, Matplotlib, and Seaborn.
Setting up a Python environment
Python can be installed from www.python.org/downloads. However, Python versions are often available through package managers that are provided by the...