lukalabs / cakechat

CakeChat: Emotional Generative Dialog System
Apache License 2.0
1.7k stars 935 forks source link

no such option: --process-dependency-links #46

Closed hurlenko closed 5 years ago

hurlenko commented 5 years ago

--process-dependency-links got deprecated and is now removed from pip so docker build fails. See here.

nicolas-ivanov commented 5 years ago

@hurlenko that's right. For CakeChat the best solution for now is to use pip 18.1. You can ensure this by adding the corresponding line to the dockerfile:

RUN pip3 --no-cache-dir install pip==18.1
RUN pip3 --no-cache-dir install -r /root/cakechat/requirements.txt --process-dependency-links
khalman-m commented 5 years ago

Hi @hurlenko! Thank you for asking. I've fixed this in https://github.com/lukalabs/cakechat/pull/47