Xiaoxstz
Xiaoxstz
This change has been taken by the commit `aed65814`
In short, `scoop` cannot make all versions available without switching with the command `scoop reset app_name` ?
Yes. It is related to #5915 . ## Reason This issue appears when something in `{UserProfile}\scoop\apps\scoop\current` changes. If you haven't done it, security software(such as `Windows Defender`) is to blame....
# My Environment * OS:`Windows 10 pro 22H2` * How to install `RustPython` ```Shell # Install rust scoop install main/rust # Install the latest RustPython cargo install --git https://github.com/RustPython/RustPython ```...
I came across the same issue. `HTTP ERROR 500` means the error is caused by the server
> Maybe your terminal is interpreting the printed bytes as UTF-16 instead of UTF-8. > > ```python > In [12]: "测试中文".encode("utf-8") > Out[12]: b'\xe6\xb5\x8b\xe8\xaf\x95\xe4\xb8\xad\xe6\x96\x87' > ``` Yes. My result is...
> btw, what is the output of `locale` in your terminal? I run the command `systeminfo` and get the result below: ```txt System Locale: zh-cn;Chinese (China) Input Locale: en-us;English (United...
> Could you upload your `test.py` file here? You can drag-and-drop the zipped source code to the comment box. The file is attached here. [test.zip](https://github.com/user-attachments/files/17227642/test.zip)
I have fixed it by changing the locale of my terminal (PowerShell). The result of the commands: * `$OutputEncoding`: The value is `Unicode (UTF-8)`. It is used to output to...