ChrisDelClea / streamlit-agraph

A Streamlit Graph Vis
MIT License
387 stars 52 forks source link

install error : could not find a version that satisfies the requirement streamlit-agraph (from versions: none) #17

Closed midannii closed 3 years ago

midannii commented 3 years ago

When I tried to install streamlit-agraph with below code,

pip install streamlit-agraph

I came across error like below :(

Defaulting to user installation because normal site-packages is not writeable
ERROR: Could not find a version that satisfies the requirement streamlit-agraph (from versions: none)
ERROR: No matching distribution found for streamlit-agraph

I'm in

midannii commented 3 years ago

I find out the reason was my streamlit version because my pip was belong to python3. When I do pip uninstall streamlit and

pip3 install -U pip
pip3 install streamlit
pip3 install streamlit-agraph

I can make what I want!