python streamlit 运行 问题
python streamlit run issue
我正在尝试 运行 streamlit 应用程序 (python 3.7.3) 安装后显示错误
streamlit hello
File "<ipython-input-2-c7a1b683aa76>", line 1
streamlit hello
^
SyntaxError: invalid syntax
有点晚了,但这是在 Windows 上使用的推荐设置:https://github.com/streamlit/streamlit/wiki/Installing-in-a-virtual-environment
复制 C:\Users\AppData\Roaming\Python\Python36\Scripts
中的 streamlit 文件并将它们粘贴到您的 C:\ProgramData\Anaconda3\Scripts
和 运行 anaconda 提示符中的 streamlit 代码中。
命令 运行:
streamlit run filename.py
在windows
py -m streamlit run hello.py
我正在尝试 运行 streamlit 应用程序 (python 3.7.3) 安装后显示错误
streamlit hello
File "<ipython-input-2-c7a1b683aa76>", line 1
streamlit hello
^
SyntaxError: invalid syntax
有点晚了,但这是在 Windows 上使用的推荐设置:https://github.com/streamlit/streamlit/wiki/Installing-in-a-virtual-environment
复制 C:\Users\AppData\Roaming\Python\Python36\Scripts
中的 streamlit 文件并将它们粘贴到您的 C:\ProgramData\Anaconda3\Scripts
和 运行 anaconda 提示符中的 streamlit 代码中。
命令 运行:
streamlit run filename.py
在windows
py -m streamlit run hello.py