Almenon

Results 386 comments of Almenon

Can you go to help -> toggle developer tools, open arepl, and then send me the console output please?

Weird - are you free sometime for a quick zoom/discord call? If I see it in person I might be able to figure it out. I'm busy 9-5 pacific time...

oh, the issue is because you have a infinite loop. Try saving the below to a file named "a.py" and executing it on the command line with "python a.py". It...

Python only throws an exception when there is a invalid operation, a Exception thrown intentionally, or invalid syntax. `while True: pass` is technically a valid operation. You're telling python to...

While loops should generally have a statement that breaks out of the loop. For example: ```python i = 0 while i < 10: i = i+1 print(i) ``` print output:...

> well the thing is if you realize your mistake and change the loop from a while to a for loop you still have to restart arepl. Yep, you have...

arepl_dump is not meant to be run from the command line - it only works in AREPL.

That being said it would probably still be good to have it not cause an error when running from the command line, so users can run a script from the...

It can, but I don't work that much on this project anymore. You or someone else is welcome to be submit a PR if you wish.

Thanks for the report, I was able to reproduce the error on Windows 10 with python version 3.6.4 and the following packages: ``` torch==1.8.1+cu102 torchvision==0.9.1+cu102 torchaudio===0.8.1 -f https://download.pytorch.org/whl/torch_stable.html numpy==1.19.5 ```