pandas-streaming icon indicating copy to clipboard operation
pandas-streaming copied to clipboard

Missing packages: scikit-learn and ijson

Open stephengmatthews opened this issue 1 year ago • 1 comments

Pip doesn't install all required packages. It seems that scikit-learn and ijson are missing.

The steps to demonstrate that scikit-learn is missing:

python -m venv venv
source venv/bin/activate
pip install pandas-streaming
python -c "import pandas_streaming.df"

And, the output:

ModuleNotFoundError: No module named 'sklearn'

The steps to demonstrate that ijson is missing:

pip install scikit-learn
python -c "import pandas_streaming.df"

And, the output:

ModuleNotFoundError: No module named 'ijson'

stephengmatthews avatar May 28 '24 07:05 stephengmatthews

I had the same issue. Consider storing dependencies explicitly in pyproject.toml. (I personally like poetry as a dep manager)

ybressler avatar May 29 '24 20:05 ybressler