Skip to content

Commit

Permalink
Merge branch 'master' into loadxl_on_submit4dn
Browse files Browse the repository at this point in the history
  • Loading branch information
KorayKirli committed Oct 11, 2016
2 parents 5300ee5 + d1d935f commit daab542
Show file tree
Hide file tree
Showing 12 changed files with 23 additions and 1 deletion.
Binary file removed AllItems.xls
Binary file not shown.
Binary file removed AllItems_ordered.xls
Binary file not shown.
Binary file modified Data_Files/Rao_et_al_2014/fieldsRao.xls
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed Data_Files/Sanborn_et_al_2015/Sanborn_capc.xls
Binary file not shown.
Binary file removed Data_Files/Sanborn_et_al_2015/Sanborn_fields.xls
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,28 @@ The Submit4DN package is registered with Pypi so installation is as simple as:
pip3 install submit4dn
```

### Troubleshooting

If you encounter an error containint something like:

```
Symbol not found: _PyInt_AsLong
```

Then it means that the imaging library Pillow / PIL is missing some required libraries. You can fix it by doing the following.

```shell
$ pip uninstall pillow
$ brew install libjpeg zlib libtiff littlecms webp openjpeg tcl-tk
$ pip install pillow
```

That should fix it!


Once installed then follow the directions below:



## Connection
To be able to use the provided tools, you need to have a secure key to access the REST application.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@

requires = [
'attrs==16.0.0',
'Pillow==3.3.0',
'py==1.4.31',
'python-magic==0.4.12',
'requests==2.11.0',
'wheel==0.24.0',
'xlrd==1.0.0',
'xlwt==1.1.2',
'awscli==1.10.62',
'Pillow==3.3.0',
]

tests_require = [
Expand Down

0 comments on commit daab542

Please sign in to comment.