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
The code below works well on Android/GNU/Linux OS.
But on OS Windows 7/32bit (vurtual box), the cmd console freezes and causes the sound to beep in the speakers. I tried the same code on Windows 7/64bit cmd does not freeze, but the powershell console freezes.
Reproducing the problem:
1.program.py
import requests
from rich.markdown import Markdown
from rich.console import Console
console = Console()
r = requests.get("https://raw.githubusercontent.com/snooppr/snoop/master/changelog.txt").text
console.print(Markdown(r.replace("=" * 83, "")))
Run the code in Powershell python C:\Users\User\Desktop\program.py
The code will be executed, but at the end the console will hang and sound will beep from the speaker.
OS Windows 7 64bit
Python 3.8
rich 13.0.1 and rich 13.6.0
The text was updated successfully, but these errors were encountered:
The problem was found: some Windows 7 terminals (32 bit) do not support the symbol that is in rich markdown: " • " replacing it with " · " solves the problem.
I observed the non-acceptance of the symbol in the terminal " • " (the console beeped and removed it from the terminal) only in Windows 7/32, in the same Windows 7/64 this symbol was accepted without problems.
The code below works well on Android/GNU/Linux OS.
But on OS Windows 7/32bit (vurtual box), the cmd console freezes and causes the sound to beep in the speakers. I tried the same code on Windows 7/64bit cmd does not freeze, but the powershell console freezes.
Reproducing the problem:
1.program.py
python C:\Users\User\Desktop\program.py
The code will be executed, but at the end the console will hang and sound will beep from the speaker.
OS Windows 7 64bit
Python 3.8
rich 13.0.1 and rich 13.6.0
The text was updated successfully, but these errors were encountered: