Error while installing pandas using pip

Multi tool use
Error while installing pandas using pip
C:UsersDELL>pip install pandas
Downloading/unpacking pandas
Running setup.py (path:C:UsersDELLAppDataLocalTemppip_build_DELLpandassetup.py) egg_info for package pandas
Traceback (most recent call last):
File "<string>", line 17, in <module>
File "C:UsersDELLAppDataLocalTemppip_build_DELLpandassetup.py", line 736, in <module>
packages=find_packages(include=['pandas', 'pandas.*']),
TypeError: find_packages() got an unexpected keyword argument 'include'
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 17, in <module>
File "C:UsersDELLAppDataLocalTemppip_build_DELLpandassetup.py", line 736, in <module>
packages=find_packages(include=['pandas', 'pandas.*']),
TypeError: find_packages() got an unexpected keyword argument 'include'
I'm using Python 3.4.
Your version of setuptools is out of date.
– James
3 hours ago
Try upgrading setup tools like this
pip install -U setuptools
and then try pip install pandas
– Sreeram TP
3 hours ago
pip install -U setuptools
pip install pandas
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
You can't import by using pip. You can only install with pip
– Sreeram TP
3 hours ago