I use jupyter notebook with a python 3.6 installation. I created an anaconda virtual environment, and when I launch a jupyter notebook inside it, the %%time command seems buggy.
If I write a cell with the %%time command like follow :
%%time
a = 2
All my variables declarations are unknown in my following cells
print(a)
I get the following error :
NameError Traceback (most recent call last)
<ipython-input-3-3f786850e387> in <module>
----> 1 a
NameError: name 'a' is not defined
However, it works just fine in my root environment. Please help.