安装运行streamlit 过程中出现的2个问题
问题1 No module named 'streamlit.cli
conda 安装完成streamlit seaborn 后运行streamlit hello 命令出现
解决:更新streamlit后解决。
pip install --upgrade streamlit
问题2 ImportError: cannot import name COMMON_SAFE_ASCII_CHARACTERS‘ from charset-normalizerconstant
运行下面代码时出现
streamlit run G:\Book3_Elements-of-Mathematics-main\Book3_Ch02_Python_Codes\Streamlit_Bk3_Ch2_10.py [ARGUMENTS]
解决:更新charset-normalizer解决
pip install --upgrade charset-normalizer