Skip to content

Commit 81610ef

Browse files
committedJul 7, 2014
remove grequests install dep, modify install instructions
1 parent 4d16952 commit 81610ef

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed
 

‎INSTALL

+10-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,19 @@ Running the tests:
33

44
Installing ebaysdk on Mac, Linux, Unix:
55

6-
1) Install the SDK with easy_install
6+
1) Install System Dependancies
7+
8+
Red Hat:
9+
sudo yum install python-lxml
10+
11+
Ubuntu:
12+
sudo apt-get install python-lxml
13+
14+
2) Install the SDK with easy_install
715

816
sudo easy_install ebaysdk
917

10-
Or you can install the bleeding edge version,
18+
Or install the latest version from github,
1119

1220
sudo easy_install https://github.com/timotheus/ebaysdk-python/archive/master.zip
1321

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
license="COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0",
4242
packages=find_packages(),
4343
provides=[PKG],
44-
install_requires=['PyYaml', 'lxml', 'requests', 'grequests'],
44+
install_requires=['PyYaml', 'lxml', 'requests'],
4545
test_suite='tests',
4646
long_description=long_desc,
4747
classifiers=[

0 commit comments

Comments
 (0)
Please sign in to comment.