Setting Up Your Development Environment
2 min read
Step-by-step guide to install Python, R, and essential data science tools on your computer.
Step-by-step guide to install Python, R, and essential data science tools on your computer.
Ask questions about this lesson and get instant answers.
Getting your computer ready for data science does not have to be complicated. This guide walks you through installing the essential tools.
Anaconda bundles Python with common data science libraries.
Anaconda includes: NumPy, Pandas, Matplotlib, Jupyter, and 250+ other packages.
For a lighter installation:
python --versionThen install common packages:
1pip install numpy pandas matplotlib jupyter scikit-learn
2R is essential for statistical analysis and visualization.
Open RStudio and run:
1install.packages(c("tidyverse", "ggplot2", "dplyr", "readr"))
2VS Code is a versatile editor that works great for both Python and R.
Now that your environment is ready: