I am having trouble using the feather format to export data. I have installed the package using:
conda install feather-format -c conda-forge
however, when I use pd.to_feather()
I get an error telling me to install the package (which is already installed).
ImportError: the feather-format library is not installed you can install via conda conda install feather-format -c conda-forge or via pip pip install -U feather-format
I also tried using pyarrow, but I am getting another error, saying
ImportError: cannot import name 'cpu_count'
Can you please tell what am I doing wrong? Thank you