Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 774 Bytes

File metadata and controls

18 lines (15 loc) · 774 Bytes

hacklytics-2020

A submission to the Hacklytics data science hackathon

The project uses population, economic, and demographic data in order to predict the unsheltered homeless population in regions across the United States.

Conda

Setting up environment

  1. Install conda
  2. Run conda env create -f environment.yml
  3. Activate the environment with the command conda activate hacklytics

Updating environment

  1. Activate the environment with the command conda activate hacklytics
  2. Run conda env update -f environment.yml

Installing new packages and exporting environment

  1. Run conda activate hacklytics
  2. To install new packages, run conda install [PACKAGENAME]
  3. To export conda config conda env export --from-history > environment.yml