python の拡張機能をインポートしたいのですが、vscode エラーが出てしまいます。
vscodeにインストールすれば解決しますか。
macOS Big Sur ver 11.0.1
streamlit, pandas は、ターミナルにて pip install streamlit(pandas)でインストールしました。
<python3.9.0 64-bit> python のバージョンを変えてもエラーが消えないです。
docker, jupyterlab, もインストールしている関係もあるのでしょうか。
ご教授お願い致します。
VScode
VSCode
1import streamlit as st 2import numpy as np 3import pandas as pd
errorcode
1 File "<stdin>", line 1, in <module> 2ModuleNotFoundError: No module named 'pandas'
jupyterlab
jupyterlab
1import streamlit as st 2import numpy as np 3import pandas as pd
jupyterlab
1st.title('Streamlit')
jupyterlab
1streamlit run main.py
jupyterlab
1 File "<ipython-input-13-2e02c77d4725>", line 1 2 streamlit run main.py 3 ^ 4SyntaxError: invalid syntax
terminal
ver
pandas
1pandas 1.0.5
streamlit
1streamlit 0.72.0
terminal
1streamlit run main.py
↓
errorcode
1SyntaxError: invalid syntax
(base) @@@ ~ % streamlit run main.py ↓ Usage: streamlit run [OPTIONS] TARGET [ARGS]... Error: Streamlit requires raw Python (.py) files, not .py . For more information, please see https://docs.streamlit.io
回答1件
あなたの回答
tips
プレビュー