Smallest example:


In [ ]:
import pandas as pd
from pathlib import Path

def create_and_save():
    df = pd.DataFrame({'a':[0,1], 'b':[1,2]})
    p = Path(".") / 'test.csv'
    df.to_hdf(p, 'df')

In [ ]:
!conda install pandas=0.19 --yes

In [ ]:
create_and_save()

In [ ]:
!conda update pandas --yes

Reset notebook here to reload pandas


In [ ]:
create_and_save()

In [ ]: