3 回答

TA貢獻1836條經驗 獲得超13個贊
這件事發(fā)生在我身上。我使用 anaconda 提示符而不是 Windows cmd:
安裝 anaconda cmd 提示符
創(chuàng)造一個環(huán)境
對我來說使用“activate”我只是使用了streamlit。
pip 安裝 Streamlit
輸入“streamlit hello”而不是“streamlit run hello”6:此網站可能有助于解決VsCode 中“C:\Users\AccountName\AppData\Local\Programs\Python\Python38-32\python.exe”錯誤

TA貢獻1793條經驗 獲得超6個贊
如果您使用的是Windows操作系統(tǒng),您可以嘗試以下步驟:
首先需要下載Anaconda:https: //www.anaconda.com/
打開 Anaconda PowerShell 提示符并輸入以下內容:
conda list
pip uninstall streamlit
然后,創(chuàng)建一個新環(huán)境,并測試以下內容:
pip install streamlit
streamlit hello
最后,您可以在代碼上測試 Streamlit,將 your_app 替換為文件的實際名稱。確保您與源代碼文件位于同一目錄中。
streamlit run your_app.py
添加回答
舉報