Added missing requirements

This commit is contained in:
Netkas 2021-01-14 14:33:08 -05:00
parent 06b8267ff7
commit dd03155777
2 changed files with 4 additions and 0 deletions

View File

@ -155,6 +155,9 @@ install_translation:
cd services/translation; python3 setup.py install
install_nsfw:
python3 -m pip install opencv-python
python3 -m pip install scikit-image
python3 -m pip install pydload
cd services/nsfw_detection; python3 setup.py install
install_ping:

View File

@ -14,6 +14,7 @@ class Server(object):
self.web_application = web.Application()
self.web_application.add_routes(
[web.post('/', self.ping)]
[web.get('/', self.ping)]
)
async def ping(self, request):