有没有可以学习和理解它工作原理的入门读物?
通常,当我安装一个包时,我只是使用pip,或者pycharm中的安装程序。
我发现自己在尝试运行streamlit时非常困惑。我花了一天的时间试图弄清楚
https://docs.streamlit.io/en/stable/
说明很简单:
pip安装streamlit
streamlit
我最近有一个32位的python,我把它换成了64位。这是导致python38-32与Python38错误的原因吗?
Fatal error in launcher: Unable to create process using ‘“c:\users\user\appdata\local\programs\python\python38-32\python.exe” “C:\Users\user\AppData\Local\Programs\Python\Python38\Scripts\streamlit.exe” hello’: The system cannot find the file specified.我试过了:
C:\Users\user>python -m streamlit hello
C:\Users\user\AppData\Local\Programs\Python\Python38\python.exe: No module named streamlit.__main__; 'streamlit' is a package and cannot be directly executed我不知道它是从哪里得到的:
local\programs\python\python38-32\python.exe那并不存在,我只有:
Local\Programs\Python\Python38\这就是windows路径中的内容
我想知道是否有人能帮上忙。谢谢
发布于 2022-02-24 17:40:42
这件事发生在我身上。我使用了anaconda提示符,而不是windows cmd:
”我简单地使用了StreamLitt.
发布于 2020-10-08 18:05:43
Doc应运行streamlit app.py
尝试: python streamlit hello
发布于 2021-10-07 06:00:06
如果您使用的是Windows操作系统,可以尝试以下步骤:
Anaconda首先,你需要下载:
conda list
pip uninstall streamlit
pip install streamlit
streamlit hello
streamlit run your_app.py
https://stackoverflow.com/questions/64199030
复制相似问题