How to Setup Anaconda For Data Science?
Last Updated :
03 May, 2025
To start any data science project it’s important to set up your computer with the right tools. Anaconda is one of the most widely used platforms for data science with Python because it consist of many useful libraries and tools which are pre-installed. Please make sure your laptop or PC has at least 4 GB RAM to run Anaconda without issues. In this guide you’ll learn how to set up Anaconda step-by-step.
Step 1: Download Anaconda
Visit Anaconda's official website. Select the version for your operating system Windows, macOS or Linux. Download the Anaconda Distribution. Choose the Python 3.x version as it’s the most commonly used in data science. To go in more detail refer to:
After successfully completing the installation process you are here now the Anaconda Navigator.
Anaconda Navigator Anaconda Navigator contains lots of stuff inside it. So let's understand which we need for our next data science project.
Step 2: Launch Jupyter Notebook
Jupyter Notebook is like a digital notebook where you can write code, notes and charts. To use it:
- Open Anaconda Navigator from your Start Menu
- Click Launch under Jupyter Notebook
This will open a new tab in your browser. From there click New > Python 3 Notebook to start writing code. Â Below is a demo image to demonstrate how Jupyter Notebook UI looks like:
Jupyter Notebook in Anaconda Once you’ve set up Anaconda and started using Jupyter Notebook you want to explore other helpful tools that come with it. These tools make coding and data analysis even easier.
2. JupyterLab
JupyterLab is an upgraded version of Jupyter Notebook. It allow to open multiple notebooks, text files, terminals and more all in one place. It’s great if you like working with many files at once in a clean and flexible layout. Below is a demo image to demonstrate how JupyterLab UI looks like:
Jupyterlab in anaconda 3. Spyder
One of the most important and powerful Python IDE is Spyder. It’s especially helpful for data scientists and includes features like variable explorer, plots and integration with libraries like NumPy, Pandas, and Matplotlib and other open-source software. Below is a demo image to demonstrate how Spyder UI looks like:
Spyder in Anaconda 4. RStudio
When it comes to the data science world then Python and R are the two most programming languages that come into our minds. R Studio is an integrated development environment(IDE) for the R programming language. It provides literate programming tools which basically allow the use of R scripts, outputs, text and images in reports, Word documents and even an HTML files. Below is a demo image to demonstrate how RStudio UI looks like:
R Studio in Anaconda lab Step 3: Using Anaconda Prompt
If you like using the command line Anaconda also gives you a tool called Anaconda Prompt. Here you can type commands to manage your packages and environments. To open Anaconda Prompt in Windows: Click Start, search or select Anaconda Prompt from the menu.
Anaconda prompt in window Once you launch the prompt you will notice that the terminal now has (base) written in front of the computer name. It means that your base conda environment is set.
Prompt BaseNow let's discuss some useful commands. To view all the installed packages please type the command as follows:
conda list
 list of files in anaconda Let’s say the user wants to install pandas but he/she does not know the version. The user can use the following command to search for its versions:
conda search pandas
pandas in anaconda To install a package type the following command:
conda install pandas
conda install pandasAnd the user wants to install pandas with version 1.2.4 then use the following command to do so:
conda install pandas==1.2.4
To remove the package please type the command as follows: "conda remove pandas"
Conda Remoe in Anaconda To set up avirtual environment for Python using Anaconda you may refer to this article How to Set up Virtual Environment for Python using Anaconda.Â
Similar Reads
How to Set Up VS Code for Data Science and AI - Ultimate Guide
Visual Studio Code (VS Code) is a powerful, lightweight, and extensible code editor that is widely used for data science and AI projects due to its ability to handle Python, Jupyter notebooks, and more within a single environment. When combined with Anaconda, it becomes an even more robust tool for
3 min read
How to Install earthpy in Anaconda?
Earthpy is a Python package that allows plotting and working with geographical raster and vector data with open source tools easier. Geopandas, which focuses on vector data, and raster, which enables the entry and output of raster data files, are both used by Earthpy. Matplotlib is also required for
1 min read
Top Kaggle Courses For Data Science
Kaggle is the most popular platform for Data Science. It has multiple free datasets, projects that you can use for practice, and competitions that have insane prizes! It also has a helpful community where you can share your thoughts and learn new things. But the best feature of Kaggle is Kaggle Lear
7 min read
Pandas Cheat Sheet for Data Science in Python
Pandas is a powerful and versatile library that allows you to work with data in Python. It offers a range of features and functions that make data analysis fast, easy, and efficient. Whether you are a data scientist, analyst, or engineer, Pandas can help you handle large datasets, perform complex op
15+ min read
How to Install GIT in Conda?
Anaconda is a free and open-source distribution of the programming languages Python and R programming languages for scientific computing, data processing, and data analytics. It includes Jupyter, Spyder, and a powerful CLI to manage the development environment. Git is a free, open-source, and most p
2 min read
How to Become a Chartered Data Scientist
With the increasing popularity of Data Science, it is no surprise that jobs like Data Scientist, Data Analyst, etc. are becoming more in demand than ever. It appears that Data science is the new buzz word and everybody in the tech sector is either already a data scientist or working on becoming a da
8 min read
Flask Tutorial for Data Science
Flask is a lightweight Python web framework that helps data scientists turn models and analysis into interactive web applications. This tutorial covers how to use Flask for deploying machine learning models, building APIs, and creating data visualization dashboards. You'll learn how to set up Flask,
11 min read
Setting Up a Data Science Environment in Python
Data Science is about understanding the data using programming and statistics. But before you begin working on any project itâs important to prepare your computer by setting up the right tools. This article will guide you how to setup data science environment in python. Also make sure you have a lap
4 min read
What is a Data Science Platform?
In the steadily advancing scene of data-driven navigation, associations are progressively going to refine apparatuses and advancements to bridle the force of data. One such essential component in data examination is the Data Science Platform. This article means to demystify the idea, investigate its
14 min read
How to Install Anaconda on MacOS?
In this article, we will learn how to install Anaconda on MacOS. Anaconda is a distribution of the Python and R programming languages for scientific computing, that aims to simplify package management and deployment. Installation using Graphical Interface Step 1: Download the Graphical installer fro
1 min read