Slow Page Loading On Apache When Using Flask
The Issue I am using my laptop with Apache to act as a server for a local project involving tensorflow and python which uses an API written in Flask to service GET and POST request
Solution 1:
The tensorflow module being a C extension module, may not be implemented so it works properly in Python sub interpreters. To combat this, force your application to run in the main Python interpreter context. Details in:
Post a Comment for "Slow Page Loading On Apache When Using Flask"