简体   繁体   English

Windows 命令提示导入错误:无法导入所需的依赖项:Z2EA9510C37F7F89E4941

[英]Python Pandas in Windows Command Prompt ImportError: Unable to import required dependencies: numpy (Anaconda)

I am trying to run a python script off the Windows command prompt.我正在尝试在 Windows 命令提示符下运行 python 脚本。 The script runs in a server environment which is a tough place to install modules because of our companies firewalls.该脚本在服务器环境中运行,由于我们公司的防火墙,该环境很难安装模块。 So It was convenient to use Anaconda 3 which includes python 3.8 and Data engineering modules like Pandas.因此使用 Anaconda 3 很方便,其中包括 python 3.8 和 Pandas 等数据工程模块。

The script runs with no issue in Spyder and Visual Studio code, but when I try to run it in the Windows Command line I get the following error:该脚本在 Spyder 和 Visual Studio 代码中运行没有问题,但是当我尝试在 Windows 命令行中运行它时,我收到以下错误:

MKL initialization ensuring its correct out-of-the box operation under condition when Gnu OpenMP had already been loaded by Python process is not assured. Please install mkl-service package, see http://github.com/IntelPython/mkl-service
          from . import _distributor_init
        Traceback (most recent call last):
          File "installservice.py", line 9, in <module>
            import pandas as pd
          File "C:\ProgramData\Anaconda3\lib\site-packages\pandas\__init__.py", line 16, in <module>
            raise ImportError(
        ImportError: Unable to import required dependencies:
        numpy:
        
        IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!
        
        Importing the numpy C-extensions failed. This error can happen for
        many reasons, often due to issues with your setup or how NumPy was
        installed. We have compiled some common reasons and troubleshooting tips at:
    
        https://numpy.org/devdocs/user/troubleshooting-importerror.html
    
    Please note and check the following:
    
      * The Python version is: Python3.8 from "C:\ProgramData\Anaconda3\python.exe"
      * The NumPy version is: "1.19.2"

Again the script runs with no issues in my IDEs but not on Windows Command Line.再次,该脚本在我的 IDE 中运行没有问题,但在 Windows 命令行上没有问题。 Please help请帮忙

Try upgrading the pip and then try to uninstall if they are already present in the below order.尝试升级 pip,然后尝试卸载(如果它们已按以下顺序存在)。

pip uninstall pandas
pip uninstall numpy
pip install pandas
pip install numpy

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM