chendaniely / pandas_for_everyone

Repository to accompany "Pandas for Everyone"
http://a.co/d/c270uul
MIT License
390 stars 402 forks source link

Improved way to load as conda virtual environment #13

Open pjgoodall opened 4 years ago

pjgoodall commented 4 years ago

Hi Daniel,

Nice course!

This is working well so-far % conda env create --name pandas_for_everyone -f environment.yml

environment.yml:

name: pandas-data-analysis-chen
channels:
  - anaconda
  - defaults
  - conda-forge
dependencies:
  - python=3
  - pip
  - feather-format
  - ipython
  - jupyterlab
  - numba
  - numpy
  - odo
  - openpyxl
  - pandas
  - pandas-datareader
  - pweave
  - regex
  - scikit-learn
  - seaborn
  - statsmodels
  - wget
  - xlwt

Cheers, --Peter G