-3

I'm trying to run a program, but it says this:


Error importing: pycurl lib.

To install it on Debian based systems:

$ 'sudo apt-get install python3-pycurl'


First of all, what is PycURL lib? Second of all, is it something you install? If so, how do you?

Just an FYI, I am on Mac

Suggestions?

oguz ismail
  • 1
  • 16
  • 47
  • 69
GraniteSOS
  • 49
  • 2
  • 10

1 Answers1

0

You can google what pycurl lib is.

As it says there, you need to run

sudo apt-get install python3-pycurl

This needs to be done in terminal on your mac. Whatever else you were trying to do is dependent upon this.

Sean Payne
  • 1,625
  • 1
  • 8
  • 20
  • Problem is, I don't know the macOS version of "apt-get". I have tried installing PycURL with brew and the easy_install command, but I still get the same error. – GraniteSOS May 15 '20 at 20:47
  • Have you tried using pip? pip install pycurl or pip3 install pycurl – Sean Payne May 16 '20 at 01:43