On Ubuntu x64, I just freshly installed Anaconda 3.
I then installed altair
via conda
per these directions. Then I run the example code:
from altair import *
population = load_dataset('population')
Chart(population).mark_bar().encode(
x='sum(people)',
).transform_data(filter="datum.year==2000")
The code runs, but nothing happens. I expected a page would open in the browser perhaps, like bokeh
does. To be safe, I also ran jupyter notebook
in the background and re-running the code - no difference.
Please let me know if there's more information you need about my environment.