i have the following issue with ipyparallel (using python 3.4). The view.sync_imports
does neglect the extra module name to which i try to bind them with the 'as' directive.
Example:
c = Client(profile='slurm')
v = c[:]
with v.sync_imports():
import pandas as pd
Output: importing pandas on engine(s)
So pandas is only available under the name 'pandas'. Anyone a suggestion what i can do about this?
I also tried the %px magic, does not help