Import Pandas on apache server causes timeout error

后端 未结 1 1659
天涯浪人
天涯浪人 2021-01-19 00:57

I\'ve got a Django project working on an Apache server.

I installed pandas and want to use it to start manipulating data - however something odd is happening.

<
相关标签:
1条回答
  • 2021-01-19 01:27

    Try adding:

    WSGIApplicationGroup %{GLOBAL}
    

    Various of the scientific packages that it is going to need will not work in Python sub interpreters. That directive will force the use of the main interpreter context.

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