1.10. Libraries/Packages

1.10.2. Installing libraries

The Anaconda distribution we installed also installed most of the key data science Python libraries/packages we will use throughout the semester. In the event you need to install a new package to add functionality to Python, e.g. seaborn (which you already have!), you can

  1. Open Anaconda Prompt (Windows) or Terminal (Mac) or a code cell in Jupyter Lab

  2. conda install seaborn will install Seaborn

    • If conda install doesn’t work for a package, you can try to pip install it. E.g. pip install seaborn

Some packages can’t be pip installed, but hopefully you won’t need to deal with that this semester, so I’m going to skip discussion of such package installs.