rebuild uwsgi with pcre support

前端 未结 7 1087
夕颜
夕颜 2020-12-01 01:25

when running uwsgi i get the following message:

!!! no internal routing support, rebuild with pcre support !!!

I already have installed pcr

相关标签:
7条回答
  • 2020-12-01 01:59

    For those who want to fix this on amazon linux 2 or any red hat family distros

    First, Uninstall the uwsgi package

    pip uninstall uwsgi
    

    Then, Install pcre and pcre-devel

    yum install pcre pcre-devel
    

    Then, Reinstall the uwsgi package

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