From c9ba6f0d0ed96aa2c1c80ac02b26e4c90bad966e Mon Sep 17 00:00:00 2001 From: Yu Yang Date: Fri, 14 Apr 2017 15:54:28 +0800 Subject: [PATCH] Paddle need requests package to download file. --- python/setup.py.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/setup.py.in b/python/setup.py.in index 4ac35e3b8d..228e762d56 100644 --- a/python/setup.py.in +++ b/python/setup.py.in @@ -13,6 +13,9 @@ packages=['paddle', setup(name='paddle', version='${PADDLE_VERSION}', description='Parallel Distributed Deep Learning', + install_requires=[ + "requests", + ], packages=packages, package_dir={ '': '${CMAKE_CURRENT_SOURCE_DIR}'