Jelajahi Sumber

Adding README and conda environment setup

Marc Garcia 7 tahun lalu
induk
melakukan
bc79da1633
2 mengubah file dengan 32 tambahan dan 0 penghapusan
  1. 23 0
      README.md
  2. 9 0
      environment.yml

+ 23 - 0
README.md

@@ -0,0 +1,23 @@
+pandas tutorial
+===============
+
+Materials for the pandas tutorial by @datapythonista.
+
+Installation
+------------
+
+Clone this repository from the terminal (Git is required):
+
+- `git clone https://github.com/datapythonista/pandas-tutorials.git`
+
+Download and install Miniconda (Python 3.6):
+
+- https://conda.io/miniconda.html
+
+Install environment:
+
+- `cd pandas-tutorials && conda env create`
+
+Activate environment and run Jupyter:
+
+- `source activate pandas-tutorial && jupyter notebook`

+ 9 - 0
environment.yml

@@ -0,0 +1,9 @@
+name: pandas-tutorial
+channels:
+  - conda-forge
+  - defaults
+dependencies:
+  - python=3.7
+  - pandas=0.23.3
+  - matplotlib=2.2
+  - jupyter=1.0