Installing Python Packages for DSE200x with pip
Python for Data Science is an introductory course that provides an overview of various tooling that exists in the python world that is useful for data science purposes.
This includes things like:
- Jupyter Notebooks
- The numpy library
- The scipy library
- The pandas library
- The matplotlib library
The course provides an excellent overview to python, and suggests using anaconda which is a distribution of python geared toward data science purposes. Although this is a great way to get started with python if you have never used it before, installing multiple versions of python (which this approach would do) can be quite a pain to manage long term. This is especially true if you use python for other purposes such as web development with flask or django.
If you try to work through some of the jupyter notebooks that are presented in the course without installing anaconda, you will often see error messages like this:
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
in
1 get_ipython().run_line_magic('matplotlib', 'inline')
2 import numpy as np
----> 3 from scipy import misc
4 import matplotlib.pyplot as plt
ModuleNotFoundError: No module named 'scipy'
The solution is of course to install the package that is missing. In the example above we can install the missing package with pip3 install scipy
.
You can use the one liner below to install all of the required packages for the course in one go. Note, this assumes you already have python3 and pip3 installed on your computer.
pip3 install jupyter pandas numpy scipy matplotlib imageio folium
Thank you for reading! Share your thoughts with me on mastodon or via email.
Check out some more stuff to read down below.
Most popular posts this month
- Daggerversary
- SQLite DB Migrations with PRAGMA user_version
- Moving to New Jersey
- Setting up ANTLR4 on Windows
- Forbidden Words
Recent Favorite Blog Posts
This is a collection of the last 8 posts that I bookmarked.
- Pluralistic: What the fuck is a PBM? (23 Sep 2024) from Pluralistic: Daily links from Cory Doctorow
- The Framework 13 has a new high-res screen! from David Heinemeier Hansson
- 40 Thoughts At 40 from Blog – Brad Frost
- To Blog or to Social-Post from jwz
- Gotchas with SQLite in Production from Anže’s Blog
- Petter Reinholdtsen: More than 200 orphaned Debian packages moved to git, 216 to go from Planet Debian
- Eli Bendersky: You don't need virtualenv in Go from Planet Python
- Introducing Writebook from Jason Fried
Articles from blogs I follow around the net
OpenAI Twitter account once again hacked and used to promote scam token
The Twitter account belonging to OpenAI's news account was compromised and used to "announce" a scam website purporting to announce the $OPENAI token. "All OpenAI users are eligible to claim a piece of $OPENAI’s initi…
via Web3 is Going Just Great September 23, 2024DNA Lounge: Wherein a winnar is us!
As foretold by prophecy, you the people have once again declared DNA Lounge to be "Best Nightclub", and Hubba Hubba Revue to be "Best Burlesque" in the 2024 Best of the Bay! Also "Best Pizza" runner-up for DNA Pizza, and "Best D…
via jwz September 23, 2024SmashingConf NYC
I’m extremely excited to be a part of Smashing Conf NYC coming up on October 7-10. I’ll be: If you’re in NYC or able to make it there, I hope you’re able to make it!
via Blog – Brad Frost September 23, 2024Generated by openring