<div dir="ltr"><div><div><div>Hi All, <br><br></div>I'm having some teething problems with 3.0. <br></div>It seems that I have a conflict somewhere but I can't see where. For example I have a very simple script which is doing weird things<br><br></div>#Simple simple script<br><div>import yt<br>filename = "....../RD0000/RD0000"<br>ds = yt.load(filename)<br><br><br></div><div>This fails with:<br><br>File "test.py", line 6, in <module><br>    ds = yt.load(filename)<br>AttributeError: 'module' object has no attribute 'load'<br><br></div><div>If instead I change the script to be:<br><br></div><div>#Simple simple script<br></div><div>from yt.mods import *<br>filename = "......../RD0000/RD0000"<br>ds = load(filename)<br>sp = ds.h.sphere('max', (10, 'kpc'))<br>prof1d = ProfilePlot(sphere, "radius", "H2I_Fraction")<br><br></div><div>This now loads the file but fails on:<br> File "test.py", line 9, in <module><br>    prof1d = ProfilePlot(sphere, "radius", "H2I_Fraction")<br>NameError: name 'ProfilePlot' is not defined<br><br><br></div><div>Any ideas what's happening here?<br><br></div><div>Cheers,<br>John<br><br></div><div><br>(yt-x86_64)[regan@taito-login3 RT]$ yt instinfo<br><br>yt module located at:<br>    /homeappl/home/regan/appl_taito/YT/Dev-3.0/yt-3.0<br><br>The current version of the code is:<br><br>---<br>38fff02747ca<br>---<br><br>This installation CAN be automatically updated.<br>yt dependencies were last updated on<br>Mon Sep 15 12:40:51 EEST 2014<br><br><br>(yt-x86_64)[regan@taito-login3 RT]$ which pyyt<br>/homeappl/home/regan/appl_taito/YT/Dev-3.0/yt-3.0/doc/yt-x86_64/bin/pyyt<br><br></div></div>