diff --git a/environment.yaml b/environment.yaml new file mode 100644 index 0000000..bbc98e9 --- /dev/null +++ b/environment.yaml @@ -0,0 +1,19 @@ +name: odsc-west-2017 +channels: +- conda-forge +- defaults +dependencies: +- bokeh=0.12.9 +- ipython=6.2.1 +- matplotlib=2.1.0 +- notebook=5.2.0 +- numpy=1.13.3 +- pandas=0.20.3 +- pip=9.0.1 +- python=3.6.3 +- requests=2.18.4 +- scikit-learn=0.19.0 +- scipy=0.19.1 +- seaborn=0.8.1 +- setuptools=36.6.0 +- statsmodels=0.8.0 diff --git a/imports-test.py b/imports-test.py new file mode 100644 index 0000000..0b49258 --- /dev/null +++ b/imports-test.py @@ -0,0 +1,8 @@ +import requests +import numpy as np +from scipy import linalg +import matplotlib.pyplot as plt +import seaborn as sns +import pandas as pd +from sklearn.preprocessing import Normalizer +print("All imports succeeded.")