Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to solve the error of python3 installation pandas

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces the python3 installation pandas error how to solve the relevant knowledge, the content is detailed and easy to understand, the operation is simple and fast, has a certain reference value, I believe that everyone after reading this python3 installation pandas error how to solve the article will have a harvest, let's take a look at it.

Error installing pandas:

Running setup.py (path:/data/envs/py3/build/pandas/setup.py) egg_info for package pandas

Traceback (most recent call last):

File "", line 17, in

File "/ data/envs/py3/build/pandas/setup.py", line 736, in

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 "", line 17, in

File "/ data/envs/py3/build/pandas/setup.py", line 736, in

Packages=find_packages (include= ['pandas',' pandas.*'])

TypeError: find_packages () got an unexpected keyword argument 'include'

Solution:

(the reason is that find_packages () in include is too old)

Pip install-U setuptools

Then it can be installed normally!

Add: resolve the problem of not installing pandas libraries on pyCharm

Recently, when you install the pandas library on PyCharm, it always fails to install, indicating that there is something wrong with pip.

I am using python version 3.4. In the end, I decided that my pip version should be too old, and it would be fine after cmd updated the pip.

In the cmd operation instruction: python-m pip install-U pip

After the update is complete, search and install the pandas library normally on the PyCharm platform.

This is the end of the article on "how to solve pandas errors in python3 installation". Thank you for reading! I believe you all have a certain understanding of the knowledge of "how to solve pandas errors in python3 installation". If you want to learn more, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report