Jupyter Notebook の sys.stdout を io.TextIOWrapper でラップできない
import sys, io
# UTF8にエンコード
sys.stdout = io.TextIOWrapper(sys.stdout, encoding='utf-8')
print("hello")
上記のコードを実行したところ、
UnsupportedOperation Traceback (most recent call last)
<ipython-input-4-7af1dd44dff7> in <module>()
21 s.decompose()
22 text = ' '.join(soup.stripped_strings)
---> 23 print(text)
UnsupportedOperation: not writable
というエラーが出てしまいました。原因が不明のため、ご教授お願いします。jupyternotebookで実行しています。