I’m actually seeing the same thing in a fresh inst...
# troubleshooting
t
I’m actually seeing the same thing in a fresh install. Slightly different python, pip, and mac versions, but same error.
Copy code
src/watchdog_fsevents.c:531:10: warning: missing field 'ml_meth' initializer [-Wmissing-field-initializers]
        {NULL},
             ^
    src/watchdog_fsevents.c:602:1: warning: missing field 'm_slots' initializer [-Wmissing-field-initializers]
    };
    ^
    281 warnings and 2 errors generated.
    error: command 'clang' failed with exit status 1
    ----------------------------------------
ERROR: Command errored out with exit status 1: /Users/taylormurphy/Documents/Projects/dev/tmp/.venv/bin/python3 -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/8r/c8x9fxy55ns47cg49tprmtk40000gn/T/pip-install-ntrd413d/watchdog_b41f9a3c61a146c7938950dfeb1ff258/setup.py'"'"'; __file__='"'"'/private/var/folders/8r/c8x9fxy55ns47cg49tprmtk40000gn/T/pip-install-ntrd413d/watchdog_b41f9a3c61a146c7938950dfeb1ff258/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /private/var/folders/8r/c8x9fxy55ns47cg49tprmtk40000gn/T/pip-record-g0yb6u4x/install-record.txt --single-version-externally-managed --compile --install-headers /Users/taylormurphy/Documents/Projects/dev/tmp/.venv/include/site/python3.8/watchdog Check the logs for full command output.
s
I had to run below command to resolve the issue -
Copy code
sudo rm -rf /Library/Developer/CommandLineTools
sudo xcode-select --instal
t
Yeah, I’m toying with xcode things
I’ll try that