-
-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Terminal hangs in Windows #121
Comments
@IsaacSH What happens if you open a new tab? |
@IsaacSH Please open a browser and go to http://localhost:8071 (If it does not work, try with port 8072 and so on) |
@IsaacSH Could you please start Spyder on DEV_MODE? You just need to execute this from CMD/Anaconda Prompt/WinPython Prompt: set SPYDER_DEV=True
spyder After Spyder opens and closes, you should have access to the file |
@andfoy There you go. |
@IsaacSH Which is your pywinpty library version? |
@andfoy It is 0.3. |
@IsaacSH Try to update to latest version of pywinpty and try once again |
@andfoy I think it's the latest version that are compatible with all other packages. You want me to force install to the latest version: |
@IsaacSH could you provide the output of:
|
@goanpeca Sure, here you go. Update: I modified the issue to include the text.
|
@IsaacSH What happens if you run the following instructions on an interpreter: from winpty import PTY
# Start a new winpty-agent process of size (cols, rows)
cols, rows = 80, 25
process = PTY(cols, rows)
# Spawn a new console process, e.g., CMD
process.spawn(r'C:\windows\system32\cmd.exe')
# Read console output (Unicode)
process.read()
# Write input to console (Unicode)
process.write('Text')
# Resize console size
new_cols, new_rows = 90, 30
process.set_size(new_cols, new_rows)
# Know if the process is alive
alive = process.isalive()
# Close console pipes
process.close()
# End winpty-agent process
del process |
@andfoy , it goes fine until |
It seems it's a duplicate of andfoy/pywinpty#59 |
@IsaacSH This an error related to the Python 3.6 header files on some x64 builds. Right now, we don't know how to correct this. Please see this SO answer to get more information: https://stackoverflow.com/a/33285993/1143629 |
Here is the corresponding issue ticket on Python bug tracker: https://bugs.python.org/issue20160 |
Thanks @andfoy . This didn't show up in python 3.5 per my recent test. |
I have been facing this issue after installing spyder-terminal with:
Have tried the following with no luck:
Spyder freezes on normal startup from start menu and I have to end the process using the task manager. However setting this on a CMD:
and then starting Spyder makes it responsive, but gives the following error on switching to the Terminal tab - Opening http://localhost:8071 gives the following text:
Here is my spyder_terminal_err.log file. Then I tried the following on an interpreter:
and all runs very well with no event. My
@ccordoba12 @andfoy please advise on how to solve this problem and get my spyder-terminal into a working state! |
Description of your problem
Terminal freezes and does not let to start typing.
What steps will reproduce the problem?
conda install spyder-terminal -c spyder-ide
What is the expected output? What do you see instead?
Let me start typing but it's frozen
Please provide any additional information below
Versions and main components
The text was updated successfully, but these errors were encountered: