Hi,
st_annotated_text (1.0.1) package installed but can’t import this package using python3.7 in conda base environment on Ubuntu18.04. Installed streamlit version is 0.72.0.
installed using pip install st-annotated-text
tried to import package using import st_annotated_text
Get the following error:
ModuleNotFoundError: No module named ‘st_annotated_text’
From the README of the project, the import code seems to be:
from st_annotated_text import annotated_text.
and an example code:
import streamlit as st
from st_annotated_text import annotated_text
"""
# Annotated text example
Below is an example of how to use the annotated_text function:
"""
annotated_text(
"This ",
("is", "verb", "#8ef"),
" some ",
("annotated", "adj", "#faa"),
("text", "noun", "#afa"),
" for those of ",
("you", "pronoun", "#fea"),
" who ",
("like", "verb", "#8ef"),
" this sort of ",
("thing", "noun", "#afa"),
)
Typically any function from the module can called using any of:
import moduleName # import module moduleName.functionName # call function from the module
or from moduleName import functionName # directly import the specifc function functionName # call the function