You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In non-interactive python 2, we can use from __future__ import absolute_import to force explicit relative import. This is not working when, for example, we write some vanilla python files and relative-importing them from a notebook.
I tried pip install git+https://github.com/ipython/ipynb but it gives that it requires python 3. Is there any workaround about this?
The text was updated successfully, but these errors were encountered:
A lot of the code depends on new machinery introduced in Python 3.4, so at
least for now there is no Python 2 support. It could possibly be hacked on
at a later date, depending on how important it is to people :) How
important is support for python < 3.4 support for you?
In non-interactive python 2, we can use from future import
absolute_import to force explicit relative import. This is not working
when, for example, we write some vanilla python files and
relative-importing them from a notebook.
I tried pip install git+https://github.com/ipython/ipynb but it gives
that it requires python 3. Is there any workaround about this?
In non-interactive python 2, we can use
from __future__ import absolute_import
to force explicit relative import. This is not working when, for example, we write some vanilla python files and relative-importing them from a notebook.I tried
pip install git+https://github.com/ipython/ipynb
but it gives that it requires python 3. Is there any workaround about this?The text was updated successfully, but these errors were encountered: