I'm trying to run Scalene inside a .ipynb fily in Jupyter with %%scalene and get the following error:
Scalene: An exception of type UnicodeEncodeError occurred. Arguments:
('charmap', '\r\n<html>\r\n <head>\r\n <title>Scalene</title> ...
followed by basically the whole Scalene Github website html code and ending with:
Traceback (most recent call last):
File "C:\Users\marci\anaconda3\envs\wc2022v2_env\lib\site-packages\scalene\scalene_profiler.py", line 1949, in run_profiler
exit_status = profiler.profile_code(
File "C:\Users\marci\anaconda3\envs\wc2022v2_env\lib\site-packages\scalene\scalene_profiler.py", line 1781, in profile_code
Scalene.generate_html(profile_fname=Scalene.__profile_filename, output_fname=Scalene.__profiler_html)
File "C:\Users\marci\anaconda3\envs\wc2022v2_env\lib\site-packages\scalene\scalene_profiler.py", line 1729, in generate_html
f.write(rendered_content)
File "C:\Users\marci\anaconda3\envs\wc2022v2_env\lib\encodings\cp1250.py", line 19, in encode
return codecs.charmap_encode(input,self.errors,encoding_table)[0]
UnicodeEncodeError: 'charmap' codec can't encode character '\xa3' in position 79534: character maps to <undefined>
Am I right to think it is the website coding that is causing this error? Or is it the browser?
If anything else: what can be done about it?
python 3.8.15
Got the same error related to cp1250. Seems scalene profiler didn't bother to test national environments. Tried to use
chcp 65001
to set runtime to utf-8, but it didn't help.My fix was to hack its source "
(...)\scalene\scalene_profiler.py
" at line 1728: instead of:use:
That solved the problem.