From the course: Advanced Python: Practical Database Examples

Unlock the full course today

Join today to access over 24,500 courses taught by industry experts.

Set up pandas and Jupyter Notebook

Set up pandas and Jupyter Notebook - Python Tutorial

From the course: Advanced Python: Practical Database Examples

Set up pandas and Jupyter Notebook

- [Instructor] Let's create a Jupyter Notebook and analyze some data with Pandas. First, we need to install Pandas in Jupyter. We'll do this in a virtual environment. We'll CD into it and activate it. Inside of here, we'll install our dependencies. The first one will be Pandas. The next one will be Jupyter. We'll also install Matplotlib, which will allow us to create some visualizations. Let's start up our Jupyter Notebook. We can do that with Jupyter Notebook. This starts up a Jupyter Notebook server so we can write interactive Python code. Here we can see some information about the notebook server, including the URL we'll use to access and write code in the notebook. Running Jupyter Notebook also opens up this browser with the same URL. If, for some reason, the window didn't open up, you can always use these URLs. This is the notebook dashboard where we'll be able to see all the notebooks and files we've created.…

Contents