Error When Installing Python-snappy In PyCharm
I have a '.snappy.parquet' file and I wanted to view the content in this file, I know I can use pandas and PySpark. This is beyond my knowledge, I'm not sure what to do, can someo
Solution 1:
This issue has been solved by using the approach here: Can't install python-snappy wheel in Pycharm
Solution 2:
You need snappy library written in C installed. Try this:
sudo apt-get install libsnappy-dev
pip3 install python-snappy
Post a Comment for "Error When Installing Python-snappy In PyCharm"