streamlit_visgraph
streamlit_visgraph copied to clipboard
ModuleNotFoundError: No module named 'streamlit_visgraph'
Hey, I'm experiencing the following issues:
ModuleNotFoundError: No module named 'streamlit_visgraph'
streamlit_visgraph was installed in the following manor.
pip install pandas numpy streamlit streamlit-visgraph
Python, and streamlit-visgraph versions
Python Version: 3.9.7
streamlit-visgraph: 0.2.3
run.py
from streamlit_visgraph import visgraph
import streamlit as st
Which results in the error:
ModuleNotFoundError: No module named 'streamlit_visgraph'
confirm streamlit-visgraph is installed.
pip list --local | grep streamlit-visgraph
Shows the installed version of 0.2.3
Looking into the packages folder, to make sure it is there.
ls [path_to_packages]/python3.9/site-packages/streamlit
streamlit/ streamlit-1.12.0.dist-info/ streamlit_visgraph-0.2.3.dist-info/
ls [path_to_packages]/python3.9/site-packages/streamlit_visgraph-0.2.3.dist-info
INSTALLER LICENSE METADATA RECORD REQUESTED WHEEL top_level.txt
any help would be much appreciated.