Welcome to the first project in our Data Science learning journey! This repository is part of the BLS Coders series, and it focuses on building a strong foundation in environment setup using the Conda ecosystem, including tools like Anaconda, Jupyter Notebook, and JupyterLab.
This project helps you understand and configure a reproducible Python environment for data science tasks. It covers:
conda --version
conda-forge
Feature | Jupyter Notebook | JupyterLab |
---|---|---|
Interface | Single document | Multi-tab/panel |
Customization | Limited | Extensive |
Use Case | Tutorials/Quick | Full workflows |
โโโ environment/
โ โโโ conda_setup.md # Environment setup instructions
โโโ notebooks/
โ โโโ sample_notebook.ipynb # JupyterLab starter notebook
โโโ data/ # (Optional) Raw or sample data files
โโโ README.md
Clone the repo
git clone https://github.com/Krushna-Chandra/Data-science-project-1-BLS-Coders-.git
cd Data-science-project-1-BLS-Coders-
Install Anaconda or Miniconda
Follow the steps in environment/conda_setup.md
or the main notebook.
Create and activate a new environment
conda create -n ds_env python=3.11
conda activate ds_env
Install essential packages
conda install -c conda-forge numpy pandas jupyterlab
Launch JupyterLab
jupyter lab
By completing this setup and project, you will:
Pull requests are welcome. If you find a typo or want to add improvements, feel free to contribute.
Krushna Chandra Bindhani B.Tech (CSE), Final Year | Aspiring Data Scientist GitHub | LinkedIn
This project is open source and available under the MIT License.