how do you completely uninstall dagster from mac m...
# ask-community
p
how do you completely uninstall dagster from mac m1? I need to reinstall it because I cannot import
Definations
m
Hi, if you install Dagster via pip you can just: View all installed python package
Copy code
pip freeze > requirements.txt
Manually keep only dagster's package in
requirements.txt
Remove these package with
Copy code
pip uninstall -r requirements.txt -y
t
Hi! You might not need to uninstall Dagster.
Definations
is not part of Dagster. It looks like might be a typo and you're looking for the
Definitions
import, with an
I
and not an
A
.
p
Thanks! resolved it