'import fiftyone'
import fiftyone as fo
import fiftyone.zoo as foz
dataset = foz.load_zoo_dataset("quickstart")
session = fo.launch_app(dataset)
i tried to install zoo and fiftyone.zoo and install just fiftyone and i upgrade pip and i install it from pycharm interpreter but it gave me the same error massage
Just to clarify, you can install FiftyOne and all subpackages like so:
The install docs have some troubleshooting tips if there is actually an install issue.
However, I suspect you have a folder named
fiftyone/
or script namedfiftyone.py
in your current working directory. This would confuse Python and cause the wrong thing to be imported when youimport fiftyone
.Try deleting those or moving to a different directory. Then
import fiftyone.zoo
should work.