gpt4 book ai didi

python - 重新安装 Python 后找不到 Pandas 模块

转载 作者:太空宇宙 更新时间:2023-11-04 02:25:19 29 4
gpt4 key购买 nike

在对我的系统进行一些更改后,Python 无法再找到 Pandas。我将首先说明错误,然后说明我尝试纠正的问题。

错误 - 如果我没看错,Python.exe 找不到 pandas...系统 - Hyper-v 2016、Python 3.5.4、Pandas 0.23 安装到 c:\Python35。

问题 - 以前的 Python 实例安装在不同的位置。在安装 3.5.4 之前,我删除了这些目录并删除了目录 C:\Program Files etc,但我怀疑某处有引用。

疑难解答。

正在识别正确的版本

`C:\Python35>python
Python 3.5.4 (v3.5.4:3f56838, Aug 8 2017, 02:17:05) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.r`

系统看到正确的位置

import os, sys
folder=os.path.dirname(sys.executable)
print(folder)here

其他

我已经尝试使用 pip install --ignore-installed pandas 重新安装 pandas,它说它已成功完成。

我检查了目录 C:\Python35\Lib\site-packages\pandas\core 。错误中提到的所有 *.py 文件都存在。

我正在运行的脚本在安装了 P3.5.4 到 c:\Python35 的 W10 机器上运行。

pip freeze 命令显示 pandas 0.23.0 已安装

感谢任何关于如何解决问题的提示

错误

Traceback (most recent call last):
File "D:\SQL\Script\Python\ASXList.py", line 4, in <module>
import pandas as pd
File "C:\Python35\lib\site-packages\pandas\__init__.py", line 42, in <module>
from pandas.core.api import *
File "C:\Python35\lib\site-packages\pandas\core\api.py", line 10, in <module>
from pandas.core.groupby.groupby import Grouper
File "C:\Python35\lib\site-packages\pandas\core\groupby\__init__.py", line 2, in <module>
from pandas.core.groupby.groupby import (
File "C:\Python35\lib\site-packages\pandas\core\groupby\groupby.py", line 49, in <module>
from pandas.core.frame import DataFrame
File "C:\Python35\lib\site-packages\pandas\core\frame.py", line 74, in <module>
from pandas.core.series import Series
File "C:\Python35\lib\site-packages\pandas\core\series.py", line 3978, in <module>
Series._add_series_or_dataframe_operations()
File "C:\Python35\lib\site-packages\pandas\core\generic.py", line 8891, in _add_series_or_dataframe_operations
from pandas.core import window as rwindow
File "C:\Python35\lib\site-packages\pandas\core\window.py", line 36, in <module>
import pandas._libs.window as _window
ImportError: DLL load failed: The specified module could not be found.

最佳答案

编辑:

错误似乎与 pandas .23 有关,请在命令提示符下执行以下操作。

pip uninstall pandas
pip install pandas == 0.22

https://github.com/pandas-dev/pandas/issues/21106

关于python - 重新安装 Python 后找不到 Pandas 模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50538125/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com