janschill
4/17/2018 - 5:25 AM

Working with Python on a Mac

git clone https://github.com/data-8/datascience
cd into project
conda env create -f osx_environment.yml -n datascience
source activate datascience
# `source deactivate` will unload the environment
make install
make test
if test failed due to UTF8
add this to .bash_profile/.zshrc
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8