Open MrPowers opened 1 year ago
PySpark is a heavy dependency and shouldn't be required for users that just want to create Pandas DataFrames.
pip install farsante should not install PySpark.
pip install farsante
pip install farsante[pyspark] should be the PySpark installation.
pip install farsante[pyspark]
Here is how to install optional dependencies with Poetry. I am guessing this will work.
I think Poetry dependency groups should work well for this task.
PySpark is a heavy dependency and shouldn't be required for users that just want to create Pandas DataFrames.
pip install farsante
should not install PySpark.pip install farsante[pyspark]
should be the PySpark installation.Here is how to install optional dependencies with Poetry. I am guessing this will work.