jonjoncardoso / ds105l-week10-ephemerous

This is to accompany Week 10 of https://lse-dsi.github.io/DS105/2023/ Note: this repository might cease to exist s o o n

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

πŸ—“οΈ Week 10 – Applications I: text mining & network analysis**

DS105L – Data for Data Science

AUTHOR: Dr. Jon Cardoso-Silva

DEPARTMENT: LSE Data Science Institute

DATE: 24 March 2023

🐍 The Python setup

  1. Install Python 3.9 or higher on your computer.

  2. Install anaconda or miniconda on your computer.

  3. Create a new conda environment:

    conda create -y -n=venv-ds-105 python=3.10.8
  4. Activate the environment and make sure you have pip installed inside that environment:

    # the exact `activate` command will vary depending on your OS
    conda activate venv-ds-105 

πŸ’‘ Remember to activate this particular conda environment whenever you reopen VSCode/the terminal.

  1. Install required libraries

    pip install -r requirements.txt

Now, whenever you open a Jupyter Notebook, you should see the venv-ds-105 kernel available.

About

This is to accompany Week 10 of https://lse-dsi.github.io/DS105/2023/ Note: this repository might cease to exist s o o n

License:MIT License


Languages

Language:Jupyter Notebook 99.5%Language:Python 0.5%