Python Forum
ImportError: DLL load failed: The specified procedure could not be found.
Thread Rating:
  • 1 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
ImportError: DLL load failed: The specified procedure could not be found.
#1
I am having problem plotting very simple stuff in Python 2.7.
I am using Pycharm and installed successfully matplotlib Numpy sklearn. However when I run

import matplotlib.pyplot as plt
X = [[6], [8], [10], [14], [18]]
y = [[7], [9], [13], [17.5], [18]]

plt.plot(X, y, 'k.')
plt.axis([0, 25, 0, 25])
plt.grid(True)
plt.show()
I receive following error message :
ImportError: DLL load failed: The specified procedure could not be found.

I will be appreciated if anyone can help me Huh
Reply
#2
please post your error messages (traceback) verbatim
It contains valuable information

import matplotlib.pyplot as plt

X = [6, 8, 10, 14, 18]
Y = [7, 9, 13, 17.5, 18]

plt.plot(X, Y, 'k.')
plt.axis([0, 25, 0, 25])
plt.grid(True)
plt.show()
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Library resources and ML procedure nsadams87xx 3 1,848 Mar-03-2020, 08:02 PM
Last Post: nsadams87xx
  Weighting The Python KMeans Procedure zsfeinstein 0 1,934 Apr-29-2019, 10:07 PM
Last Post: zsfeinstein
  ImportError: DLL load failed: %1 is not a valid Win32 application. LiTing 1 12,159 Oct-14-2018, 09:52 PM
Last Post: snippsat
  why I can't install numpy with this procedure atlass218 4 12,539 Sep-20-2018, 07:18 AM
Last Post: atlass218
  ImportError: numpy.core.multiarray failed to import Nimya 3 20,535 Jun-12-2018, 02:32 PM
Last Post: volcano63
  Procedure Entry Point could not be located ZedsDead 2 3,202 Mar-17-2018, 07:25 AM
Last Post: ZedsDead

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020