[QUESTION] IPython 7.10.1 on Python 3.8.0 "Press ENTER to continue..." possible bug?
See original GitHub issueWhen using IPython 7.10.1
with Python 3.8.0
, the terminal will (randomly?) prompt me to Press ENTER to continue...
after submitting a command. See screenshot attached below.
Is this by design, or this is a bug? I haven’t encountered this on previous versions (so I suspect it’s a Python 3.8 issue) and ideally it’s not something I want.
Additional Info
python -c "import IPython; print(IPython.sys_info())"
{'commit_hash': 'e508b6e4d',
'commit_source': 'installation',
'default_encoding': 'utf-8',
'ipython_path': 'C:\\Users\\Yannis.Katsaros\\AppData\\Local\\Continuum\\anaconda3\\envs\\aoc\\Lib\\site-packages\\IPython',
'ipython_version': '7.10.1',
'os_name': 'nt',
'platform': 'Windows-10-10.0.17134-SP0',
'sys_executable': 'C:\\Users\\Yannis.Katsaros\\AppData\\Local\\Continuum\\anaconda3\\envs\\aoc\\python.exe',
'sys_platform': 'win32',
'sys_version': '3.8.0 (default, Nov 6 2019, 16:00:02) [MSC v.1916 64 bit '
'(AMD64)]'}
Issue Analytics
- State:
- Created 4 years ago
- Comments:11 (3 by maintainers)
Top Results From Across the Web
7.x Series — IPython 8.7.0 documentation
IPython 8.0 will drop support for Python 3.7, removed nose as a dependency, and 7.x will only get critical bug fixes with 8.x...
Read more >ipython reads wrong python version - Stack Overflow
I had tried python -m ipython and was wondering if it was possible to disambiguate between the different python versions I have installed...
Read more >Jupyter and the future of IPython — IPython
IPython provides a rich architecture for interactive computing with: A powerful interactive shell. ... IPython supports Python 2.7 and 3.3 or newer.
Read more >Kamiak - The Forbes Group | Washington State University
Conda: Package manager for python and other software. ... 9 Questions ... (Do not do work on the login nodes, this is a...
Read more >List of supported software - EasyBuild documentation
3¶. 3to2. 3to2¶. lib3to2 is a set of fixers that are intended to backport code written for Python version 3 ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Downgrading
prompt-toolkit
from3.0.2
to2.0.2
did the trick for me.2.0.1
caused a problem.Likely a bug due to update to prompt toolkit 3. You can try to downgrade to prompt_toolkit 2 to avoid this; or run from github/master branch and modify the source to print the stack trace when this happens to debug.