I'm moving on up to Python 3, but can't seem to find an IPython release for it. The main IPython release page doesn't list anything appropriate. Any help in getting IPython working for Py3k would be much appreciated.
相关问题
- Django __str__ returned non-string (type NoneType)
- How to postpone/defer the evaluation of f-strings?
- ImportError shows up with py.test, but not when ru
- Comparing pd.Series and getting, what appears to b
- Django Attribute error 'datetime.timedelta'
相关文章
- Airflow depends_on_past explanation
- Raspberry Pi-Python: Install Pandas on Python 3.5.
- Numpy array to TFrecord
- How to split a DataFrame in pandas in predefined p
- Error following env.render() for OpenAI
- AttributeError: 'Series' object has no att
- ImportError: cannot import name 'joblib' f
- How to save a file downloaded from requests to ano
Python 3 support has been around for a fairly long time now. You don't need a different version. IPython supports modern versions of Python 2 and 3. You just run IPython with the appropriate interpreter,
python3 ipython.py
. You can install IPython on Python3 by running setup.py with your Python3 interpreter.See the ipython dev mailing list
EDIT : see the Ipython 3 page - where now (Jan 2011) it says there is a version for python 3 in source code version only
EDIT: and now iPython supports python 3 directly.