error with snappy while importing fastparquet in python

后端 未结 1 1316
闹比i
闹比i 2020-12-19 05:56

I have installed installed the following modules in my EC2 server which already has python (3.6) & anaconda installed :

  • snappy
  • pyarrow
  • s
相关标签:
1条回答
  • 2020-12-19 06:27

    Unfortunately, there are multiple things in python-land called "snappy". I believe you may have the wrong one, in which case one of the following conda commands should solve this for you:

    conda install python-snappy
    

    or

    conda install python-snappy -c conda-forge
    

    where the latter is slightly more recent (releases the GIL which can be important in threaded applications).

    0 讨论(0)
提交回复
热议问题