Running Zed 0.146.5 on macOS Sonoma 14.5.
When trying to install the package “python-fasthtml” with pip with the following line:
pip install python-fasthtml
and importing with:
from fasthtml.common import *
I receive the traceback:
File "/Users/********/Documents/fastHTML/index.py", line 1, in <module>
from fasthtml.common import *
ModuleNotFoundError: No module named 'fasthtml'
When I re-run the pip install command, all the dependencies appeared to be installed along with the package, and it installed them on the first time I ran the command as well. When I try to install with conda(conda install conda-forge::python-fasthtml), it appears to install the package, but the error persists. I’ve also tried Homebrew(brew install python-fasthtml), but it cannot find the package. Any help?