user3264845
user3264845

Reputation: 51

Installing pycurl on mac

I am very new to python and need help installing the pycurl library on my machine. I am running python 2.7 at the moment. A brief tutorial would be much appreciated.

Upvotes: 5

Views: 11523

Answers (2)

Vladimir
Vladimir

Reputation: 348

Try specify the ARCHFLAGS env var:

ARCHFLAGS="-arch x86_64" pip install pycurl==7.19.5.1

Upvotes: 3

Mysterio Man
Mysterio Man

Reputation: 1737

Use one of the two methods

Method 1: sudo easy_install pycurl

Method 2: pip install pycurl

Upvotes: 12

Related Questions