Hi Goku, when I use your method of creating a new virtual environment and run:
python -m pip install -e ".[dev]" --no-cache-dir
I get an error of "ModuleNotFoundError: No module named 'Cython'".
Tried again with pipenv and still fails.
The only way I can install the requirements are using poetry, and deleting all dependency specific versions (as followed here). But even using poetry, the numpy and snorkel packages cannot be installed.
After using poetry and generate the requirements.txt again, then pip install -r requirements.txt now works (Without snorkel)
More info: Poetry dependency resolution in pyproject.toml:
Hmm I tried to reproduce this inside an empty docker container and didn't run into this issue. It might be because of a cython dependency? which should be resolvable using pip3 install --upgrade cython.
Hi Goku, when I use your method of creating a new virtual environment and run:
I get an error of "ModuleNotFoundError: No module named 'Cython'".
More info: Poetry dependency resolution in pyproject.toml: