creare-com / pydem

Python library for Global Hydrology Analysis. Used to calculate upstream contributing area, aspect, slope, and topographic wetness index.
Apache License 2.0
114 stars 35 forks source link

Lowering error using pyDEM dem processor #7

Closed santjaqo closed 7 years ago

santjaqo commented 7 years ago

I'm in Win7 64, Anaconda Python installation, pip installed PyDEM.

I'm getting an error when calling .calc_slopes_directions() on a DEMProcessor instance (see below).

I'm aware of this question; that seems not to be the same problem I have.

This LoweringError: slc0.8 seems to be related to Numba.

This is the code I enter and the error I get:

from pydem.dem_processing import DEMProcessor

os.chdir(r'D:\my_path')

a_tile = r'31an2_clipped_wgs84.tif'

dem_proc = DEMProcessor(a_tile)

mag, aspect = dem_proc.calc_slopes_directions()
starting slope/direction calculation for chunk 1 [0:516, 0:516]
Traceback (most recent call last):

  File "<ipython-input-13-6dc0db5771d2>", line 1, in <module>
    mag, aspect = dem_proc.calc_slopes_directions()

  File "C:\Program Files\Anaconda2\lib\site-packages\pydem\dem_processing.py", line 853, in calc_slopes_directions
    self.dY[te:be-1])

  File "C:\Program Files\Anaconda2\lib\site-packages\pydem\dem_processing.py", line 879, in _slopes_directions
    return self._tarboton_slopes_directions(data, dX, dY)

  File "C:\Program Files\Anaconda2\lib\site-packages\pydem\dem_processing.py", line 890, in _tarboton_slopes_directions
    self.facets, self.ang_adj)

  File "C:\Program Files\Anaconda2\lib\site-packages\numba\dispatcher.py", line 285, in _compile_for_args
    return self.compile(tuple(argtypes))

  File "C:\Program Files\Anaconda2\lib\site-packages\numba\dispatcher.py", line 531, in compile
    cres = self._compiler.compile(args, return_type)

  File "C:\Program Files\Anaconda2\lib\site-packages\numba\dispatcher.py", line 80, in compile
    flags=flags, locals=self.locals)

  File "C:\Program Files\Anaconda2\lib\site-packages\numba\compiler.py", line 725, in compile_extra
    return pipeline.compile_extra(func)

  File "C:\Program Files\Anaconda2\lib\site-packages\numba\compiler.py", line 369, in compile_extra
    return self.compile_bytecode(bc, func_attr=self.func_attr)

  File "C:\Program Files\Anaconda2\lib\site-packages\numba\compiler.py", line 378, in compile_bytecode
    return self._compile_bytecode()

  File "C:\Program Files\Anaconda2\lib\site-packages\numba\compiler.py", line 690, in _compile_bytecode
    return self._compile_core()

  File "C:\Program Files\Anaconda2\lib\site-packages\numba\compiler.py", line 677, in _compile_core
    res = pm.run(self.status)

  File "C:\Program Files\Anaconda2\lib\site-packages\numba\compiler.py", line 257, in run
    raise patched_exception

LoweringError: slc0.8
mpu-creare commented 7 years ago

Can you tell me which version of Numba you have installed? (conda list numba)

Thanks! In the mean time, if you comment the following two lines: https://github.com/creare-com/pydem/blob/master/pydem/dem_processing.py#L2163 https://github.com/creare-com/pydem/blob/master/pydem/dem_processing.py#L2351

you should be all set.

We're working on cython versions of these functions for the next version anyway... but I'll see if I can push a fix anyway.

santjaqo commented 7 years ago

Thanks for your prompt reaction!

I updated Numba to version 0.30.0 before reading your post. I believe I had version 0.28.

This is the message error I receive now:

starting slope/direction calculation for chunk 1 [0:516, 0:516]
Traceback (most recent call last):

  File "<ipython-input-5-4dc50b1aabe8>", line 1, in <module>
    uca = dem_proc.calc_uca()

  File "C:\Program Files\Anaconda2\lib\site-packages\pydem\dem_processing.py", line 980, in calc_uca
    self.calc_slopes_directions()

  File "C:\Program Files\Anaconda2\lib\site-packages\pydem\dem_processing.py", line 858, in calc_slopes_directions
    direction)

  File "C:\Program Files\Anaconda2\lib\site-packages\pydem\dem_processing.py", line 941, in _find_flats_edges
    += FLATS_KERNEL3[iii+1, jjj+1]

TypeError: Cannot cast ufunc add output from dtype('float64') to dtype('bool') with casting rule 'same_kind'

So, this error is different. Do you have an idea on how to deal with this?

On the other hand, I noticed that I cannot use PyDEM in certain tif files. When I try it in a tile that has been previously processed with GDAL, I receive this error:

C:\Program Files\Anaconda2\lib\site-packages\pydem\dem_processing.py:563: 
MaskedArrayFutureWarning: setting an item on a masked array which has a shared mask will not copy the mask and also change the original mask array in the future.
Check the NumPy 1.11 release notes for more information.
  self.data[data.mask] = FILL_VALUE`

Maybe this must be placed in another issue... please let me know if this is the case.

mpu-creare commented 7 years ago

Ah, so updating numba helped -- that's good to know.

The next issue is the same as this one, which is fixed on the develop branch: https://github.com/creare-com/pydem/issues/5

and to fix it I think you can do something like:

pip install --ignore-installed git+git://github.com/creare-com/pydem.git@develop

Let me know if that fixes it for you.

santjaqo commented 7 years ago

Hi, thanks again for coming back with help!

When I try to install that, I receive this error: Failed building wheel for scipy Running setup.py clean for scipy Complete output from command C:\Users\ADMIN\Anaconda2\python.exe -u -c "import setuptools, tokenize;file='c:\ users\ad~1\appdata\local\temp\pip-build-qftgci\scipy\setup.py';exec(compile(getattr(tokenize, 'open', open)(_ _file).read().replace('\r\n', '\n'), file__, 'exec'))" clean --all:

`setup.py clean` is not supported, use one of the following instead:

  - `git clean -xdf` (cleans all files)
  - `git clean -Xdf` (cleans all versioned files, doesn't touch
                      files that aren't checked into the git repo)

Add `--force` to your command to use it anyway if you must (unsupported).

Then the process stops throwing this error:

Failed cleaning build dir for scipy
Failed to build scipy
Installing collected packages: numpy, scipy, geopy, traits, pyDEM
Exception:
Traceback (most recent call last):
  File "C:\Users\ADMIN\Anaconda2\lib\site-packages\pip\basecommand.py", line 215, in main
    status = self.run(options, args)
  File "C:\Users\ADMIN\Anaconda2\lib\site-packages\pip\commands\install.py", line 317, in run
    prefix=options.prefix_path,
  File "C:\Users\ADMIN\Anaconda2\lib\site-packages\pip\req\req_set.py", line 742, in install
    **kwargs
  File "C:\Users\ADMIN\Anaconda2\lib\site-packages\pip\req\req_install.py", line 831, in install
    self.move_wheel_files(self.source_dir, root=root, prefix=prefix)
  File "C:\Users\ADMIN\Anaconda2\lib\site-packages\pip\req\req_install.py", line 1032, in move_wheel_files
    isolated=self.isolated,
  File "C:\Users\ADMIN\Anaconda2\lib\site-packages\pip\wheel.py", line 346, in move_wheel_files
    clobber(source, lib_dir, True)
  File "C:\Users\ADMIN\Anaconda2\lib\site-packages\pip\wheel.py", line 324, in clobber
    shutil.copyfile(srcfile, destfile)
  File "C:\Users\ADMIN\Anaconda2\lib\shutil.py", line 83, in copyfile
    with open(dst, 'wb') as fdst:
IOError: [Errno 13] Permission denied: 'C:\\Users\\ADMIN\\Anaconda2\\Lib\\site-packages\\numpy\\core\\multiarray.pyd'

I couldn't find a workaround for this. Is there something wrong with the installer?

santjaqo commented 7 years ago

I just tried it in a Mac 10, Anaconda Python installation, with numba upgraded.

When I run pip install --ignore-installed git+git://github.com/creare-com/pydem.git@develop, but I get this error:

Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/private/var/folders/4x/rxlbmkgx1l1g6h8hdm9ssk5r0000gn/T/pip-build-6aKvVa/traits/setup.py", line 158, in <module>
        cmdclass=additional_commands(),
      File "/private/var/folders/4x/rxlbmkgx1l1g6h8hdm9ssk5r0000gn/T/pip-build-6aKvVa/traits/setup.py", line 115, in additional_commands
        from sphinx.setup_command import BuildDoc
      File "/Users/santiago/anaconda/lib/python2.7/site-packages/Sphinx-1.3.5-py2.7.egg/sphinx/setup_command.py", line 23, in <module>
        from sphinx.application import Sphinx
      File "/Users/santiago/anaconda/lib/python2.7/site-packages/Sphinx-1.3.5-py2.7.egg/sphinx/application.py", line 26, in <module>
        from docutils.parsers.rst import convert_directive_function, \
      File "/Users/santiago/anaconda/lib/python2.7/site-packages/docutils/parsers/rst/__init__.py", line 74, in <module>
        import docutils.statemachine
      File "/Users/santiago/anaconda/lib/python2.7/site-packages/docutils/statemachine.py", line 113, in <module>
        from docutils import utils
      File "/Users/santiago/anaconda/lib/python2.7/site-packages/docutils/utils/__init__.py", line 20, in <module>
        import docutils.io
      File "/Users/santiago/anaconda/lib/python2.7/site-packages/docutils/io.py", line 18, in <module>
        from docutils.utils.error_reporting import locale_encoding, ErrorString, ErrorOutput
      File "/Users/santiago/anaconda/lib/python2.7/site-packages/docutils/utils/error_reporting.py", line 47, in <module>
        locale_encoding = locale.getlocale()[1] or locale.getdefaultlocale()[1]
      File "/Users/santiago/anaconda/lib/python2.7/locale.py", line 545, in getdefaultlocale
        return _parse_localename(localename)
      File "/Users/santiago/anaconda/lib/python2.7/locale.py", line 477, in _parse_localename
        raise ValueError, 'unknown locale: %s' % localename
    ValueError: unknown locale: UTF-8

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/4x/rxlbmkgx1l1g6h8hdm9ssk5r0000gn/T/pip-build-6aKvVa/traits/
mpu-creare commented 7 years ago

Ah, yes. Please try with the --no-deps option:

pip install --no-deps --ignore-installed git+git://github.com/creare-com/pydem.git@develop

That works for me on Windows.

santjaqo commented 7 years ago

Thanks again for your help! After installing with GitHub, I needed to manually install (conda install) traits and pygeo. A UCA processing seems to be going on for a 10000x12500 DEM tile. However it advances extremely slow, it has been working on this for more than 7 hours. Could it be that Numba is not being used? Could I somehow improve performance?

mpu-creare commented 7 years ago

Glad it's working. Could you give me some more information. How did you launch the job? Did you use the commandline functions, or did you modify one of the example processing scripts? Do you know if it was slow while calculating the aspect/slope or truly during the uca calculation? The former should use numba, the latter uses cython, and should be fast.

santjaqo commented 7 years ago

It was slow on both steps, while calculating aspect and slopes, and during the uca computation.

I used the following script (adapted from the example):

from pydem.dem_processing import DEMProcessor
a_tile = r'C:/temp/gis_temp/25dz1_warp.tif'
dem_proc = DEMProcessor(a_tile)
uca = dem_proc.calc_uca()

After some 36 processing hours, the process stopped, giving this error:

Starting edge resolution round:  1 (473) .Traceback (most recent call last):

  File "<ipython-input-9-4dc50b1aabe8>", line 1, in <module>
    uca = dem_proc.calc_uca()

  File "C:\Users\ADMIN\Anaconda2\lib\site-packages\pydem\dem_processing.py", line 1170, in calc_uca
    edge_not_done_tile[te:be, le:re] += e2doi_tile

TypeError: Cannot cast ufunc add output from dtype('float64') to dtype('bool') with casting rule 'same_kind'
mpu-creare commented 7 years ago

Seems like it failed just as it was starting to calculate the upstream contributing area.

We haven't had much luck with numba speeding up the slope/aspect calculation, and we're working on rewriting those to make them faster. Hopefully once we get the uca working, it will go faster.

Well, that's a new bug, I'll look into it. In the mean time, could you please check that the following lines in your dem_processing.py script matches these: https://github.com/creare-com/pydem/blob/develop/pydem/dem_processing.py#L106 https://github.com/creare-com/pydem/blob/develop/pydem/dem_processing.py#L107 https://github.com/creare-com/pydem/blob/develop/pydem/dem_processing.py#L110

Thanks!

florianbeyer commented 7 years ago

Hi everybody,

my script:

# -*- coding: utf-8 -*-
from pydem.dem_processing import DEMProcessor

filename_to_elevation_geotiff = 'Y:/DEM/test_gefuellt.tif'
dem_proc = DEMProcessor(filename_to_elevation_geotiff)
mag, aspect = dem_proc.calc_slopes_directions()
uca = dem_proc.calc_uca()
twi = dem_proc.calc_twi()

(DEM is WGS84 and filled)

I have the same error: Cannot cast ufunc add output from dtype('float64') to dtype('bool') with casting rule 'same_kind'

Unfortunately, I get a bunch of errors trying the mentioned solutions (above)... I tried it in Windows and in Ubuntu (with Anaconda with Python 2.7 | 64bit)

I installed git 2.11.1 / numba 0.33.0 / traits 4.6.0

Can you help me? Sorry for the following: ;-)

C:\WINDOWS\system32>pip install --ignore-installed git+git://github.com/creare-com/pydem.git@develop
Collecting git+git://github.com/creare-com/pydem.git@develop
  Cloning git://github.com/creare-com/pydem.git (to develop) to c:\users\gg-admin\appdata\local\temp\pip-sgugmq-build
Collecting numpy (from pyDEM==0.1.1)
  Using cached numpy-1.13.0-cp27-none-win_amd64.whl
Collecting scipy (from pyDEM==0.1.1)
  Using cached scipy-0.19.0.zip
Collecting geopy (from pyDEM==0.1.1)
  Using cached geopy-1.11.0-py2.py3-none-any.whl
Collecting traits (from pyDEM==0.1.1)
Building wheels for collected packages: scipy
  Running setup.py bdist_wheel for scipy ... error
  Complete output from command C:\ProgramData\Anaconda2\python.exe -u -c "import setuptools, tokenize;__file__='c:\\users\\gg-admin\\appdata\\local\\temp\\pip-build-engpdd\\scipy\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d c:\users\gg-admin\appdata\local\temp\tmpylwfnipip-wheel- --python-tag cp27:
  lapack_opt_info:
  lapack_mkl_info:
    libraries mkl_core_dll,mkl_intel_lp64_dll,mkl_intel_thread_dll not found in ['C:/ProgramData/Anaconda2\\Library\\lib']
    NOT AVAILABLE

  openblas_lapack_info:
    libraries openblas not found in ['C:\\ProgramData\\Anaconda2\\lib', 'C:\\', 'C:\\ProgramData\\Anaconda2\\libs']
    NOT AVAILABLE

  atlas_3_10_threads_info:
  Setting PTATLAS=ATLAS
    libraries tatlas,tatlas not found in C:\ProgramData\Anaconda2\lib
    libraries lapack_atlas not found in C:\ProgramData\Anaconda2\lib
    libraries tatlas,tatlas not found in C:\
    libraries lapack_atlas not found in C:\
    libraries tatlas,tatlas not found in C:\ProgramData\Anaconda2\libs
    libraries lapack_atlas not found in C:\ProgramData\Anaconda2\libs
  <class 'numpy.distutils.system_info.atlas_3_10_threads_info'>
    NOT AVAILABLE

  atlas_3_10_info:
    libraries satlas,satlas not found in C:\ProgramData\Anaconda2\lib
    libraries lapack_atlas not found in C:\ProgramData\Anaconda2\lib
    libraries satlas,satlas not found in C:\
    libraries lapack_atlas not found in C:\
    libraries satlas,satlas not found in C:\ProgramData\Anaconda2\libs
    libraries lapack_atlas not found in C:\ProgramData\Anaconda2\libs
  <class 'numpy.distutils.system_info.atlas_3_10_info'>
    NOT AVAILABLE

  atlas_threads_info:
  Setting PTATLAS=ATLAS
    libraries ptf77blas,ptcblas,atlas not found in C:\ProgramData\Anaconda2\lib
    libraries lapack_atlas not found in C:\ProgramData\Anaconda2\lib
    libraries ptf77blas,ptcblas,atlas not found in C:\
    libraries lapack_atlas not found in C:\
    libraries ptf77blas,ptcblas,atlas not found in C:\ProgramData\Anaconda2\libs
    libraries lapack_atlas not found in C:\ProgramData\Anaconda2\libs
  <class 'numpy.distutils.system_info.atlas_threads_info'>
    NOT AVAILABLE

  atlas_info:
    libraries f77blas,cblas,atlas not found in C:\ProgramData\Anaconda2\lib
    libraries lapack_atlas not found in C:\ProgramData\Anaconda2\lib
    libraries f77blas,cblas,atlas not found in C:\
    libraries lapack_atlas not found in C:\
    libraries f77blas,cblas,atlas not found in C:\ProgramData\Anaconda2\libs
    libraries lapack_atlas not found in C:\ProgramData\Anaconda2\libs
  <class 'numpy.distutils.system_info.atlas_info'>
    NOT AVAILABLE

  C:\ProgramData\Anaconda2\lib\site-packages\numpy\distutils\system_info.py:572: UserWarning:
      Atlas (http://math-atlas.sourceforge.net/) libraries not found.
      Directories to search for the libraries can be specified in the
      numpy/distutils/site.cfg file (section [atlas]) or by setting
      the ATLAS environment variable.
    self.calc_info()
  lapack_info:
    libraries lapack not found in ['C:\\ProgramData\\Anaconda2\\lib', 'C:\\', 'C:\\ProgramData\\Anaconda2\\libs']
    NOT AVAILABLE

  C:\ProgramData\Anaconda2\lib\site-packages\numpy\distutils\system_info.py:572: UserWarning:
      Lapack (http://www.netlib.org/lapack/) libraries not found.
      Directories to search for the libraries can be specified in the
      numpy/distutils/site.cfg file (section [lapack]) or by setting
      the LAPACK environment variable.
    self.calc_info()
  lapack_src_info:
    NOT AVAILABLE

  C:\ProgramData\Anaconda2\lib\site-packages\numpy\distutils\system_info.py:572: UserWarning:
      Lapack (http://www.netlib.org/lapack/) sources not found.
      Directories to search for the sources can be specified in the
      numpy/distutils/site.cfg file (section [lapack_src]) or by setting
      the LAPACK_SRC environment variable.
    self.calc_info()
    NOT AVAILABLE

  Running from scipy source directory.
  non-existing path in 'scipy\\integrate': 'quadpack.h'
  Traceback (most recent call last):
    File "<string>", line 1, in <module>
    File "c:\users\gg-admin\appdata\local\temp\pip-build-engpdd\scipy\setup.py", line 416, in <module>
      setup_package()
    File "c:\users\gg-admin\appdata\local\temp\pip-build-engpdd\scipy\setup.py", line 412, in setup_package
      setup(**metadata)
    File "C:\ProgramData\Anaconda2\lib\site-packages\numpy\distutils\core.py", line 132, in setup
      config = configuration()
    File "c:\users\gg-admin\appdata\local\temp\pip-build-engpdd\scipy\setup.py", line 336, in configuration
      config.add_subpackage('scipy')
    File "C:\ProgramData\Anaconda2\lib\site-packages\numpy\distutils\misc_util.py", line 1001, in add_subpackage
      caller_level = 2)
    File "C:\ProgramData\Anaconda2\lib\site-packages\numpy\distutils\misc_util.py", line 970, in get_subpackage
      caller_level = caller_level + 1)
    File "C:\ProgramData\Anaconda2\lib\site-packages\numpy\distutils\misc_util.py", line 907, in _get_configuration_from_setup_py
      config = setup_module.configuration(*args)
    File "scipy\setup.py", line 15, in configuration
      config.add_subpackage('linalg')
    File "C:\ProgramData\Anaconda2\lib\site-packages\numpy\distutils\misc_util.py", line 1001, in add_subpackage
      caller_level = 2)
    File "C:\ProgramData\Anaconda2\lib\site-packages\numpy\distutils\misc_util.py", line 970, in get_subpackage
      caller_level = caller_level + 1)
    File "C:\ProgramData\Anaconda2\lib\site-packages\numpy\distutils\misc_util.py", line 907, in _get_configuration_from_setup_py
      config = setup_module.configuration(*args)
    File "scipy\linalg\setup.py", line 20, in configuration
      raise NotFoundError('no lapack/blas resources found')
  numpy.distutils.system_info.NotFoundError: no lapack/blas resources found

  ----------------------------------------
  Failed building wheel for scipy
  Running setup.py clean for scipy
  Complete output from command C:\ProgramData\Anaconda2\python.exe -u -c "import setuptools, tokenize;__file__='c:\\users\\gg-admin\\appdata\\local\\temp\\pip-build-engpdd\\scipy\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" clean --all:

  `setup.py clean` is not supported, use one of the following instead:

    - `git clean -xdf` (cleans all files)
    - `git clean -Xdf` (cleans all versioned files, doesn't touch
                        files that aren't checked into the git repo)

  Add `--force` to your command to use it anyway if you must (unsupported).

  ----------------------------------------
  Failed cleaning build dir for scipy
Failed to build scipy
Installing collected packages: numpy, scipy, geopy, traits, pyDEM
Exception:
Traceback (most recent call last):
  File "C:\ProgramData\Anaconda2\lib\site-packages\pip\basecommand.py", line 215, in main
    status = self.run(options, args)
  File "C:\ProgramData\Anaconda2\lib\site-packages\pip\commands\install.py", line 342, in run
    prefix=options.prefix_path,
  File "C:\ProgramData\Anaconda2\lib\site-packages\pip\req\req_set.py", line 784, in install
    **kwargs
  File "C:\ProgramData\Anaconda2\lib\site-packages\pip\req\req_install.py", line 851, in install
    self.move_wheel_files(self.source_dir, root=root, prefix=prefix)
  File "C:\ProgramData\Anaconda2\lib\site-packages\pip\req\req_install.py", line 1064, in move_wheel_files
    isolated=self.isolated,
  File "C:\ProgramData\Anaconda2\lib\site-packages\pip\wheel.py", line 345, in move_wheel_files
    clobber(source, lib_dir, True)
  File "C:\ProgramData\Anaconda2\lib\site-packages\pip\wheel.py", line 323, in clobber
    shutil.copyfile(srcfile, destfile)
  File "C:\ProgramData\Anaconda2\lib\shutil.py", line 83, in copyfile
    with open(dst, 'wb') as fdst:
IOError: [Errno 13] Permission denied: 'C:\\ProgramData\\Anaconda2\\Lib\\site-packages\\numpy\\core\\multiarray.pyd'
C:\WINDOWS\system32>pip install --no-deps --ignore-installed git+git://github.com/creare-com/pydem.git@develop
Collecting git+git://github.com/creare-com/pydem.git@develop
  Cloning git://github.com/creare-com/pydem.git (to develop) to c:\users\gg-admin\appdata\local\temp\pip-kkesij-build
Installing collected packages: pyDEM
  Running setup.py install for pyDEM ... error
    Complete output from command C:\ProgramData\Anaconda2\python.exe -u -c "import setuptools, tokenize;__file__='c:\\users\\gg-admin\\appdata\\local\\temp\\pip-kkesij-build\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record c:\users\gg-admin\appdata\local\temp\pip-axnwuu-record\install-record.txt --single-version-externally-managed --compile:
    running install
    running build
    running build_py
    creating build
    creating build\lib.win-amd64-2.7
    creating build\lib.win-amd64-2.7\pydem
    copying pydem\commandline_utils.py -> build\lib.win-amd64-2.7\pydem
    copying pydem\dem_processing.py -> build\lib.win-amd64-2.7\pydem
    copying pydem\processing_manager.py -> build\lib.win-amd64-2.7\pydem
    copying pydem\test_pydem.py -> build\lib.win-amd64-2.7\pydem
    copying pydem\utils.py -> build\lib.win-amd64-2.7\pydem
    copying pydem\__init__.py -> build\lib.win-amd64-2.7\pydem
    creating build\lib.win-amd64-2.7\pydem\cyfuncs
    copying pydem\cyfuncs\__init__.py -> build\lib.win-amd64-2.7\pydem\cyfuncs
    creating build\lib.win-amd64-2.7\pydem\reader
    copying pydem\reader\gdal_reader.py -> build\lib.win-amd64-2.7\pydem\reader
    copying pydem\reader\my_types.py -> build\lib.win-amd64-2.7\pydem\reader
    copying pydem\reader\__init__.py -> build\lib.win-amd64-2.7\pydem\reader
    creating build\lib.win-amd64-2.7\pydem\taudem
    copying pydem\taudem\taudem.py -> build\lib.win-amd64-2.7\pydem\taudem
    copying pydem\taudem\__init__.py -> build\lib.win-amd64-2.7\pydem\taudem
    running build_ext
    building 'pydem.cyfuncs.cyutils' extension
    creating build\temp.win-amd64-2.7
    creating build\temp.win-amd64-2.7\Release
    creating build\temp.win-amd64-2.7\Release\users
    creating build\temp.win-amd64-2.7\Release\users\gg-admin
    creating build\temp.win-amd64-2.7\Release\users\gg-admin\appdata
    creating build\temp.win-amd64-2.7\Release\users\gg-admin\appdata\local
    creating build\temp.win-amd64-2.7\Release\users\gg-admin\appdata\local\temp
    creating build\temp.win-amd64-2.7\Release\users\gg-admin\appdata\local\temp\pip-kkesij-build
    creating build\temp.win-amd64-2.7\Release\users\gg-admin\appdata\local\temp\pip-kkesij-build\pydem
    creating build\temp.win-amd64-2.7\Release\users\gg-admin\appdata\local\temp\pip-kkesij-build\pydem\cyfuncs
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include -Ic:\users\gg-admin\appdata\local\temp\pip-kkesij-build\pydem\cyfuncs -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC /Tpc:\users\gg-admin\appdata\local\temp\pip-kkesij-build\pydem\cyfuncs\cyutils.cpp /Fobuild\temp.win-amd64-2.7\Release\users\gg-admin\appdata\local\temp\pip-kkesij-build\pydem\cyfuncs\cyutils.obj -O3 -march=x86-64
    cl : Command line warning D9002 : ignoring unknown option '-O3'
    cl : Command line warning D9002 : ignoring unknown option '-march=x86-64'
    cyutils.cpp
    c:\programdata\anaconda2\lib\site-packages\numpy\core\include\numpy\npy_1_7_deprecated_api.h(12) : Warning Msg: Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Include\xlocale(342) : warning C4530: C++ exception handler used, but unwind semantics are not enabled. Specify /EHsc
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\ProgramData\Anaconda2\libs /LIBPATH:C:\ProgramData\Anaconda2\PCbuild\amd64 /LIBPATH:C:\ProgramData\Anaconda2\PC\VS9.0\amd64 /EXPORT:initcyutils build\temp.win-amd64-2.7\Release\users\gg-admin\appdata\local\temp\pip-kkesij-build\pydem\cyfuncs\cyutils.obj /OUT:build\lib.win-amd64-2.7\pydem\cyfuncs\cyutils.pyd /IMPLIB:build\temp.win-amd64-2.7\Release\users\gg-admin\appdata\local\temp\pip-kkesij-build\pydem\cyfuncs\cyutils.lib /MANIFESTFILE:build\temp.win-amd64-2.7\Release\users\gg-admin\appdata\local\temp\pip-kkesij-build\pydem\cyfuncs\cyutils.pyd.manifest
    cyutils.obj : warning LNK4197: export 'initcyutils' specified multiple times; using first specification
       Creating library build\temp.win-amd64-2.7\Release\users\gg-admin\appdata\local\temp\pip-kkesij-build\pydem\cyfuncs\cyutils.lib and object build\temp.win-amd64-2.7\Release\users\gg-admin\appdata\local\temp\pip-kkesij-build\pydem\cyfuncs\cyutils.exp
    building 'pydem.reader.inpaint' extension
    creating build\temp.win-amd64-2.7\Release\users\gg-admin\appdata\local\temp\pip-kkesij-build\pydem\reader
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC /Tpc:\users\gg-admin\appdata\local\temp\pip-kkesij-build\pydem\reader\inpaint.cpp /Fobuild\temp.win-amd64-2.7\Release\users\gg-admin\appdata\local\temp\pip-kkesij-build\pydem\reader\inpaint.obj -O3 -march=x86-64
    cl : Command line warning D9002 : ignoring unknown option '-O3'
    cl : Command line warning D9002 : ignoring unknown option '-march=x86-64'
    inpaint.cpp
    c:\programdata\anaconda2\lib\site-packages\numpy\core\include\numpy\npy_1_7_deprecated_api.h(12) : Warning Msg: Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Include\xlocale(342) : warning C4530: C++ exception handler used, but unwind semantics are not enabled. Specify /EHsc
    c:\users\gg-admin\appdata\local\temp\pip-kkesij-build\pydem\reader\inpaint.cpp(2391) : warning C4244: '=' : conversion from '__pyx_t_5pydem_6reader_7inpaint_DTYPEi_t' to 'int', possible loss of data
    c:\users\gg-admin\appdata\local\temp\pip-kkesij-build\pydem\reader\inpaint.cpp(2401) : warning C4244: '=' : conversion from '__pyx_t_5pydem_6reader_7inpaint_DTYPEi_t' to 'int', possible loss of data
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\ProgramData\Anaconda2\libs /LIBPATH:C:\ProgramData\Anaconda2\PCbuild\amd64 /LIBPATH:C:\ProgramData\Anaconda2\PC\VS9.0\amd64 /EXPORT:initinpaint build\temp.win-amd64-2.7\Release\users\gg-admin\appdata\local\temp\pip-kkesij-build\pydem\reader\inpaint.obj /OUT:build\lib.win-amd64-2.7\pydem\reader\inpaint.pyd /IMPLIB:build\temp.win-amd64-2.7\Release\users\gg-admin\appdata\local\temp\pip-kkesij-build\pydem\reader\inpaint.lib /MANIFESTFILE:build\temp.win-amd64-2.7\Release\users\gg-admin\appdata\local\temp\pip-kkesij-build\pydem\reader\inpaint.pyd.manifest
    inpaint.obj : warning LNK4197: export 'initinpaint' specified multiple times; using first specification
       Creating library build\temp.win-amd64-2.7\Release\users\gg-admin\appdata\local\temp\pip-kkesij-build\pydem\reader\inpaint.lib and object build\temp.win-amd64-2.7\Release\users\gg-admin\appdata\local\temp\pip-kkesij-build\pydem\reader\inpaint.exp
    copying build\lib.win-amd64-2.7\pydem\cyfuncs\cyutils.pyd -> pydem\cyfuncs
    copying build\lib.win-amd64-2.7\pydem\reader\inpaint.pyd -> pydem\reader
    running install_lib
    copying build\lib.win-amd64-2.7\pydem\commandline_utils.py -> C:\ProgramData\Anaconda2\Lib\site-packages\pydem
    copying build\lib.win-amd64-2.7\pydem\cyfuncs\cyutils.pyd -> C:\ProgramData\Anaconda2\Lib\site-packages\pydem\cyfuncs
    error: could not delete 'C:\ProgramData\Anaconda2\Lib\site-packages\pydem\cyfuncs\cyutils.pyd': Zugriff verweigert

    ----------------------------------------
Command "C:\ProgramData\Anaconda2\python.exe -u -c "import setuptools, tokenize;__file__='c:\\users\\gg-admin\\appdata\\local\\temp\\pip-kkesij-build\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record c:\users\gg-admin\appdata\local\temp\pip-axnwuu-record\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in c:\users\gg-admin\appdata\local\temp\pip-kkesij-build\`
C:\WINDOWS\system32>pip install pygeo
Collecting pygeo
  Using cached pygeo-0.1.3.tar.gz
Requirement already satisfied: numpy>=1.7 in c:\programdata\anaconda2\lib\site-packages (from pygeo)
Requirement already satisfied: scipy>=0.13 in c:\programdata\anaconda2\lib\site-packages (from pygeo)
Requirement already satisfied: Cython in c:\programdata\anaconda2\lib\site-packages (from pygeo)
Building wheels for collected packages: pygeo
  Running setup.py bdist_wheel for pygeo ... error
  Complete output from command C:\ProgramData\Anaconda2\python.exe -u -c "import setuptools, tokenize;__file__='c:\\users\\gg-admin\\appdata\\local\\temp\\pip-build-lgx5hz\\pygeo\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d c:\users\gg-admin\appdata\local\temp\tmp8z8t7fpip-wheel- --python-tag cp27:
  Warning: Multiple cython sources found for extension 'pygeo.analysis': ['pygeo/__init__.py', 'pygeo/analysis.pyx']
  See http://cython.readthedocs.io/en/latest/src/userguide/sharing_declarations.html for sharing declarations among Cython files.
  Warning: Extension name 'pygeo.analysis' does not match fully qualified name 'pygeo.__init__' of 'pygeo/__init__.py'
  Warning: Multiple cython sources found for extension 'pygeo.autopick': ['pygeo/__init__.py', 'pygeo/autopick.pyx']
  See http://cython.readthedocs.io/en/latest/src/userguide/sharing_declarations.html for sharing declarations among Cython files.
  Warning: Extension name 'pygeo.autopick' does not match fully qualified name 'pygeo.__init__' of 'pygeo/__init__.py'
  Warning: Multiple cython sources found for extension 'pygeo.coord': ['pygeo/__init__.py', 'pygeo/coord.py']
  See http://cython.readthedocs.io/en/latest/src/userguide/sharing_declarations.html for sharing declarations among Cython files.
  Warning: Extension name 'pygeo.coord' does not match fully qualified name 'pygeo.__init__' of 'pygeo/__init__.py'
  Warning: Multiple cython sources found for extension 'pygeo.dipfilt': ['pygeo/__init__.py', 'pygeo/dipfilt.pyx']
  See http://cython.readthedocs.io/en/latest/src/userguide/sharing_declarations.html for sharing declarations among Cython files.
  Warning: Extension name 'pygeo.dipfilt' does not match fully qualified name 'pygeo.__init__' of 'pygeo/__init__.py'
  Warning: Multiple cython sources found for extension 'pygeo.fastio': ['pygeo/__init__.py', 'pygeo/fastio.py']
  See http://cython.readthedocs.io/en/latest/src/userguide/sharing_declarations.html for sharing declarations among Cython files.
  Warning: Extension name 'pygeo.fastio' does not match fully qualified name 'pygeo.__init__' of 'pygeo/__init__.py'
  Warning: Multiple cython sources found for extension 'pygeo.fullpy': ['pygeo/__init__.py', 'pygeo/fullpy.py']
  See http://cython.readthedocs.io/en/latest/src/userguide/sharing_declarations.html for sharing declarations among Cython files.
  Warning: Extension name 'pygeo.fullpy' does not match fully qualified name 'pygeo.__init__' of 'pygeo/__init__.py'
  Warning: Multiple cython sources found for extension 'pygeo.rsfread': ['pygeo/__init__.py', 'pygeo/rsfread.py']
  See http://cython.readthedocs.io/en/latest/src/userguide/sharing_declarations.html for sharing declarations among Cython files.
  Warning: Extension name 'pygeo.rsfread' does not match fully qualified name 'pygeo.__init__' of 'pygeo/__init__.py'
  Warning: Multiple cython sources found for extension 'pygeo.segyarray': ['pygeo/__init__.py', 'pygeo/segyarray.py']
  See http://cython.readthedocs.io/en/latest/src/userguide/sharing_declarations.html for sharing declarations among Cython files.
  Warning: Extension name 'pygeo.segyarray' does not match fully qualified name 'pygeo.__init__' of 'pygeo/__init__.py'
  Warning: Multiple cython sources found for extension 'pygeo.segyread': ['pygeo/__init__.py', 'pygeo/segyread.pyx']
  See http://cython.readthedocs.io/en/latest/src/userguide/sharing_declarations.html for sharing declarations among Cython files.
  Warning: Extension name 'pygeo.segyread' does not match fully qualified name 'pygeo.__init__' of 'pygeo/__init__.py'
  Warning: Multiple cython sources found for extension 'pygeo.testing': ['pygeo/__init__.py', 'pygeo/testing.py']
  See http://cython.readthedocs.io/en/latest/src/userguide/sharing_declarations.html for sharing declarations among Cython files.
  Warning: Extension name 'pygeo.testing' does not match fully qualified name 'pygeo.__init__' of 'pygeo/__init__.py'
  C:\ProgramData\Anaconda2\lib\distutils\dist.py:267: UserWarning: Unknown distribution option: 'extra_link_args'
    warnings.warn(msg)
  C:\ProgramData\Anaconda2\lib\distutils\dist.py:267: UserWarning: Unknown distribution option: 'extra_compile_args'
    warnings.warn(msg)
  running bdist_wheel
  running build
  running build_py
  creating build
  creating build\lib.win-amd64-2.7
  creating build\lib.win-amd64-2.7\pygeo
  copying pygeo\coord.py -> build\lib.win-amd64-2.7\pygeo
  copying pygeo\fastio.py -> build\lib.win-amd64-2.7\pygeo
  copying pygeo\fullpy.py -> build\lib.win-amd64-2.7\pygeo
  copying pygeo\rsfread.py -> build\lib.win-amd64-2.7\pygeo
  copying pygeo\segyarray.py -> build\lib.win-amd64-2.7\pygeo
  copying pygeo\testing.py -> build\lib.win-amd64-2.7\pygeo
  copying pygeo\__init__.py -> build\lib.win-amd64-2.7\pygeo
  creating build\lib.win-amd64-2.7\pygeo\clfiles
  copying pygeo\clfiles\__init__.py -> build\lib.win-amd64-2.7\pygeo\clfiles
  running build_ext
  building 'pygeo.analysis' extension
  creating build\temp.win-amd64-2.7
  creating build\temp.win-amd64-2.7\Release
  creating build\temp.win-amd64-2.7\Release\pygeo
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/__init__.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/__init__.obj
  __init__.c
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/analysis.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/analysis.obj
  analysis.c
  c:\programdata\anaconda2\lib\site-packages\numpy\core\include\numpy\npy_1_7_deprecated_api.h(12) : Warning Msg: Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
  pygeo/analysis.c(8793) : warning C4293: '<<' : shift count negative or too big, undefined behavior
  pygeo/analysis.c(8803) : warning C4293: '<<' : shift count negative or too big, undefined behavior
  pygeo/analysis.c(8813) : warning C4293: '<<' : shift count negative or too big, undefined behavior
  pygeo/analysis.c(11522) : warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data
  pygeo/analysis.c(11528) : warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/filter.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/filter.obj
  filter.c
  pygeo/filter.c(35) : warning C4267: 'initializing' : conversion from 'size_t' to 'int', possible loss of data
  pygeo/filter.c(53) : warning C4244: '=' : conversion from 'Py_ssize_t' to 'int', possible loss of data
  pygeo/filter.c(59) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
  pygeo/filter.c(73) : warning C4267: 'initializing' : conversion from 'size_t' to 'int', possible loss of data
  pygeo/filter.c(85) : warning C4244: 'function' : conversion from 'float' to 'int', possible loss of data
  pygeo/filter.c(85) : warning C4244: 'function' : conversion from 'float' to 'int', possible loss of data
  pygeo/filter.c(112) : warning C4244: 'initializing' : conversion from 'Py_ssize_t' to 'int', possible loss of data
  pygeo/filter.c(113) : warning C4267: 'initializing' : conversion from 'size_t' to 'int', possible loss of data
  pygeo/filter.c(138) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
  pygeo/filter.c(141) : warning C4244: '=' : conversion from 'Py_ssize_t' to 'int', possible loss of data
  pygeo/filter.c(154) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
  pygeo/filter.c(157) : warning C4244: '=' : conversion from 'Py_ssize_t' to 'int', possible loss of data
  pygeo/filter.c(165) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\ProgramData\Anaconda2\libs /LIBPATH:C:\ProgramData\Anaconda2\PCbuild\amd64 /LIBPATH:C:\ProgramData\Anaconda2\PC\VS9.0\amd64 /EXPORT:initanalysis build\temp.win-amd64-2.7\Release\pygeo/__init__.obj build\temp.win-amd64-2.7\Release\pygeo/analysis.obj build\temp.win-amd64-2.7\Release\pygeo/filter.obj /OUT:build\lib.win-amd64-2.7\pygeo\analysis.pyd /IMPLIB:build\temp.win-amd64-2.7\Release\pygeo\analysis.lib /MANIFESTFILE:build\temp.win-amd64-2.7\Release\pygeo\analysis.pyd.manifest
  analysis.obj : warning LNK4197: export 'initanalysis' specified multiple times; using first specification
     Creating library build\temp.win-amd64-2.7\Release\pygeo\analysis.lib and object build\temp.win-amd64-2.7\Release\pygeo\analysis.exp
  analysis.obj : warning LNK4217: locally defined symbol energyRatio imported in function __pyx_pf_5pygeo_8analysis_8energyratio
  analysis.obj : warning LNK4217: locally defined symbol traceNormalize imported in function __pyx_pf_5pygeo_8analysis_10tracenormalize
  analysis.obj : warning LNK4217: locally defined symbol automaticGainControl imported in function __pyx_pf_5pygeo_8analysis_12agc
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\WinSDK\Bin\x64\mt.exe -nologo -manifest build\temp.win-amd64-2.7\Release\pygeo\analysis.pyd.manifest -outputresource:build\lib.win-amd64-2.7\pygeo\analysis.pyd;2
  building 'pygeo.autopick' extension
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/__init__.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/__init__.obj
  __init__.c
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/autopick.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/autopick.obj
  autopick.c
  c:\programdata\anaconda2\lib\site-packages\numpy\core\include\numpy\npy_1_7_deprecated_api.h(12) : Warning Msg: Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
  pygeo/autopick.c(10468) : warning C4293: '<<' : shift count negative or too big, undefined behavior
  pygeo/autopick.c(10478) : warning C4293: '<<' : shift count negative or too big, undefined behavior
  pygeo/autopick.c(10488) : warning C4293: '<<' : shift count negative or too big, undefined behavior
  pygeo/autopick.c(11261) : warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data
  pygeo/autopick.c(11267) : warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/filter.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/filter.obj
  filter.c
  pygeo/filter.c(35) : warning C4267: 'initializing' : conversion from 'size_t' to 'int', possible loss of data
  pygeo/filter.c(53) : warning C4244: '=' : conversion from 'Py_ssize_t' to 'int', possible loss of data
  pygeo/filter.c(59) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
  pygeo/filter.c(73) : warning C4267: 'initializing' : conversion from 'size_t' to 'int', possible loss of data
  pygeo/filter.c(85) : warning C4244: 'function' : conversion from 'float' to 'int', possible loss of data
  pygeo/filter.c(85) : warning C4244: 'function' : conversion from 'float' to 'int', possible loss of data
  pygeo/filter.c(112) : warning C4244: 'initializing' : conversion from 'Py_ssize_t' to 'int', possible loss of data
  pygeo/filter.c(113) : warning C4267: 'initializing' : conversion from 'size_t' to 'int', possible loss of data
  pygeo/filter.c(138) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
  pygeo/filter.c(141) : warning C4244: '=' : conversion from 'Py_ssize_t' to 'int', possible loss of data
  pygeo/filter.c(154) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
  pygeo/filter.c(157) : warning C4244: '=' : conversion from 'Py_ssize_t' to 'int', possible loss of data
  pygeo/filter.c(165) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\ProgramData\Anaconda2\libs /LIBPATH:C:\ProgramData\Anaconda2\PCbuild\amd64 /LIBPATH:C:\ProgramData\Anaconda2\PC\VS9.0\amd64 /EXPORT:initautopick build\temp.win-amd64-2.7\Release\pygeo/__init__.obj build\temp.win-amd64-2.7\Release\pygeo/autopick.obj build\temp.win-amd64-2.7\Release\pygeo/filter.obj /OUT:build\lib.win-amd64-2.7\pygeo\autopick.pyd /IMPLIB:build\temp.win-amd64-2.7\Release\pygeo\autopick.lib /MANIFESTFILE:build\temp.win-amd64-2.7\Release\pygeo\autopick.pyd.manifest
  autopick.obj : warning LNK4197: export 'initautopick' specified multiple times; using first specification
     Creating library build\temp.win-amd64-2.7\Release\pygeo\autopick.lib and object build\temp.win-amd64-2.7\Release\pygeo\autopick.exp
  autopick.obj : warning LNK4217: locally defined symbol energyRatio imported in function __pyx_pf_5pygeo_8autopick_energyRatio
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\WinSDK\Bin\x64\mt.exe -nologo -manifest build\temp.win-amd64-2.7\Release\pygeo\autopick.pyd.manifest -outputresource:build\lib.win-amd64-2.7\pygeo\autopick.pyd;2
  building 'pygeo.coord' extension
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/__init__.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/__init__.obj
  __init__.c
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/coord.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/coord.obj
  coord.c
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\ProgramData\Anaconda2\libs /LIBPATH:C:\ProgramData\Anaconda2\PCbuild\amd64 /LIBPATH:C:\ProgramData\Anaconda2\PC\VS9.0\amd64 /EXPORT:initcoord build\temp.win-amd64-2.7\Release\pygeo/__init__.obj build\temp.win-amd64-2.7\Release\pygeo/coord.obj /OUT:build\lib.win-amd64-2.7\pygeo\coord.pyd /IMPLIB:build\temp.win-amd64-2.7\Release\pygeo\coord.lib /MANIFESTFILE:build\temp.win-amd64-2.7\Release\pygeo\coord.pyd.manifest
  coord.obj : warning LNK4197: export 'initcoord' specified multiple times; using first specification
     Creating library build\temp.win-amd64-2.7\Release\pygeo\coord.lib and object build\temp.win-amd64-2.7\Release\pygeo\coord.exp
  building 'pygeo.dipfilt' extension
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/__init__.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/__init__.obj
  __init__.c
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/dipfilt.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/dipfilt.obj
  dipfilt.c
  c:\programdata\anaconda2\lib\site-packages\numpy\core\include\numpy\npy_1_7_deprecated_api.h(12) : Warning Msg: Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
  pygeo/dipfilt.c(11517) : warning C4293: '<<' : shift count negative or too big, undefined behavior
  pygeo/dipfilt.c(11527) : warning C4293: '<<' : shift count negative or too big, undefined behavior
  pygeo/dipfilt.c(11537) : warning C4293: '<<' : shift count negative or too big, undefined behavior
  pygeo/dipfilt.c(12915) : warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data
  pygeo/dipfilt.c(12921) : warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\ProgramData\Anaconda2\libs /LIBPATH:C:\ProgramData\Anaconda2\PCbuild\amd64 /LIBPATH:C:\ProgramData\Anaconda2\PC\VS9.0\amd64 /EXPORT:initdipfilt build\temp.win-amd64-2.7\Release\pygeo/__init__.obj build\temp.win-amd64-2.7\Release\pygeo/dipfilt.obj /OUT:build\lib.win-amd64-2.7\pygeo\dipfilt.pyd /IMPLIB:build\temp.win-amd64-2.7\Release\pygeo\dipfilt.lib /MANIFESTFILE:build\temp.win-amd64-2.7\Release\pygeo\dipfilt.pyd.manifest
  dipfilt.obj : warning LNK4197: export 'initdipfilt' specified multiple times; using first specification
     Creating library build\temp.win-amd64-2.7\Release\pygeo\dipfilt.lib and object build\temp.win-amd64-2.7\Release\pygeo\dipfilt.exp
  building 'pygeo.fastio' extension
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/__init__.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/__init__.obj
  __init__.c
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/fastio.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/fastio.obj
  fastio.c
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\ProgramData\Anaconda2\libs /LIBPATH:C:\ProgramData\Anaconda2\PCbuild\amd64 /LIBPATH:C:\ProgramData\Anaconda2\PC\VS9.0\amd64 /EXPORT:initfastio build\temp.win-amd64-2.7\Release\pygeo/__init__.obj build\temp.win-amd64-2.7\Release\pygeo/fastio.obj /OUT:build\lib.win-amd64-2.7\pygeo\fastio.pyd /IMPLIB:build\temp.win-amd64-2.7\Release\pygeo\fastio.lib /MANIFESTFILE:build\temp.win-amd64-2.7\Release\pygeo\fastio.pyd.manifest
  fastio.obj : warning LNK4197: export 'initfastio' specified multiple times; using first specification
     Creating library build\temp.win-amd64-2.7\Release\pygeo\fastio.lib and object build\temp.win-amd64-2.7\Release\pygeo\fastio.exp
  building 'pygeo.fullpy' extension
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/__init__.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/__init__.obj
  __init__.c
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/fullpy.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/fullpy.obj
  fullpy.c
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\ProgramData\Anaconda2\libs /LIBPATH:C:\ProgramData\Anaconda2\PCbuild\amd64 /LIBPATH:C:\ProgramData\Anaconda2\PC\VS9.0\amd64 /EXPORT:initfullpy build\temp.win-amd64-2.7\Release\pygeo/__init__.obj build\temp.win-amd64-2.7\Release\pygeo/fullpy.obj /OUT:build\lib.win-amd64-2.7\pygeo\fullpy.pyd /IMPLIB:build\temp.win-amd64-2.7\Release\pygeo\fullpy.lib /MANIFESTFILE:build\temp.win-amd64-2.7\Release\pygeo\fullpy.pyd.manifest
  fullpy.obj : warning LNK4197: export 'initfullpy' specified multiple times; using first specification
     Creating library build\temp.win-amd64-2.7\Release\pygeo\fullpy.lib and object build\temp.win-amd64-2.7\Release\pygeo\fullpy.exp
  building 'pygeo.rsfread' extension
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/__init__.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/__init__.obj
  __init__.c
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/rsfread.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/rsfread.obj
  rsfread.c
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\ProgramData\Anaconda2\libs /LIBPATH:C:\ProgramData\Anaconda2\PCbuild\amd64 /LIBPATH:C:\ProgramData\Anaconda2\PC\VS9.0\amd64 /EXPORT:initrsfread build\temp.win-amd64-2.7\Release\pygeo/__init__.obj build\temp.win-amd64-2.7\Release\pygeo/rsfread.obj /OUT:build\lib.win-amd64-2.7\pygeo\rsfread.pyd /IMPLIB:build\temp.win-amd64-2.7\Release\pygeo\rsfread.lib /MANIFESTFILE:build\temp.win-amd64-2.7\Release\pygeo\rsfread.pyd.manifest
  rsfread.obj : warning LNK4197: export 'initrsfread' specified multiple times; using first specification
     Creating library build\temp.win-amd64-2.7\Release\pygeo\rsfread.lib and object build\temp.win-amd64-2.7\Release\pygeo\rsfread.exp
  building 'pygeo.segyarray' extension
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/__init__.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/__init__.obj
  __init__.c
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/segyarray.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/segyarray.obj
  segyarray.c
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\ProgramData\Anaconda2\libs /LIBPATH:C:\ProgramData\Anaconda2\PCbuild\amd64 /LIBPATH:C:\ProgramData\Anaconda2\PC\VS9.0\amd64 /EXPORT:initsegyarray build\temp.win-amd64-2.7\Release\pygeo/__init__.obj build\temp.win-amd64-2.7\Release\pygeo/segyarray.obj /OUT:build\lib.win-amd64-2.7\pygeo\segyarray.pyd /IMPLIB:build\temp.win-amd64-2.7\Release\pygeo\segyarray.lib /MANIFESTFILE:build\temp.win-amd64-2.7\Release\pygeo\segyarray.pyd.manifest
  segyarray.obj : warning LNK4197: export 'initsegyarray' specified multiple times; using first specification
     Creating library build\temp.win-amd64-2.7\Release\pygeo\segyarray.lib and object build\temp.win-amd64-2.7\Release\pygeo\segyarray.exp
  building 'pygeo.segyread' extension
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/__init__.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/__init__.obj
  __init__.c
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/segyread.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/segyread.obj
  segyread.c
  c:\programdata\anaconda2\lib\site-packages\numpy\core\include\numpy\npy_1_7_deprecated_api.h(12) : Warning Msg: Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
  pygeo/segyread.c(25627) : warning C4293: '<<' : shift count negative or too big, undefined behavior
  pygeo/segyread.c(25637) : warning C4293: '<<' : shift count negative or too big, undefined behavior
  pygeo/segyread.c(25647) : warning C4293: '<<' : shift count negative or too big, undefined behavior
  pygeo/segyread.c(26974) : warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data
  pygeo/segyread.c(26980) : warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data
  C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/fpconvert.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/fpconvert.obj
  fpconvert.c
  c:\users\gg-admin\appdata\local\temp\pip-build-lgx5hz\pygeo\pygeo\fpconvert.h(3) : fatal error C1083: Cannot open include file: 'netinet/in.h': No such file or directory
  error: command 'C:\\Users\\gg-admin\\AppData\\Local\\Programs\\Common\\Microsoft\\Visual C++ for Python\\9.0\\VC\\Bin\\amd64\\cl.exe' failed with exit status 2

  ----------------------------------------
  Failed building wheel for pygeo
  Running setup.py clean for pygeo
Failed to build pygeo
Installing collected packages: pygeo
  Running setup.py install for pygeo ... error
    Complete output from command C:\ProgramData\Anaconda2\python.exe -u -c "import setuptools, tokenize;__file__='c:\\users\\gg-admin\\appdata\\local\\temp\\pip-build-lgx5hz\\pygeo\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record c:\users\gg-admin\appdata\local\temp\pip-me6wud-record\install-record.txt --single-version-externally-managed --compile:
    Warning: Multiple cython sources found for extension 'pygeo.analysis': ['pygeo/__init__.py', 'pygeo/analysis.pyx']
    See http://cython.readthedocs.io/en/latest/src/userguide/sharing_declarations.html for sharing declarations among Cython files.
    Warning: Extension name 'pygeo.analysis' does not match fully qualified name 'pygeo.__init__' of 'pygeo/__init__.py'
    Warning: Multiple cython sources found for extension 'pygeo.autopick': ['pygeo/__init__.py', 'pygeo/autopick.pyx']
    See http://cython.readthedocs.io/en/latest/src/userguide/sharing_declarations.html for sharing declarations among Cython files.
    Warning: Extension name 'pygeo.autopick' does not match fully qualified name 'pygeo.__init__' of 'pygeo/__init__.py'
    Warning: Multiple cython sources found for extension 'pygeo.coord': ['pygeo/__init__.py', 'pygeo/coord.py']
    See http://cython.readthedocs.io/en/latest/src/userguide/sharing_declarations.html for sharing declarations among Cython files.
    Warning: Extension name 'pygeo.coord' does not match fully qualified name 'pygeo.__init__' of 'pygeo/__init__.py'
    Warning: Multiple cython sources found for extension 'pygeo.dipfilt': ['pygeo/__init__.py', 'pygeo/dipfilt.pyx']
    See http://cython.readthedocs.io/en/latest/src/userguide/sharing_declarations.html for sharing declarations among Cython files.
    Warning: Extension name 'pygeo.dipfilt' does not match fully qualified name 'pygeo.__init__' of 'pygeo/__init__.py'
    Warning: Multiple cython sources found for extension 'pygeo.fastio': ['pygeo/__init__.py', 'pygeo/fastio.py']
    See http://cython.readthedocs.io/en/latest/src/userguide/sharing_declarations.html for sharing declarations among Cython files.
    Warning: Extension name 'pygeo.fastio' does not match fully qualified name 'pygeo.__init__' of 'pygeo/__init__.py'
    Warning: Multiple cython sources found for extension 'pygeo.fullpy': ['pygeo/__init__.py', 'pygeo/fullpy.py']
    See http://cython.readthedocs.io/en/latest/src/userguide/sharing_declarations.html for sharing declarations among Cython files.
    Warning: Extension name 'pygeo.fullpy' does not match fully qualified name 'pygeo.__init__' of 'pygeo/__init__.py'
    Warning: Multiple cython sources found for extension 'pygeo.rsfread': ['pygeo/__init__.py', 'pygeo/rsfread.py']
    See http://cython.readthedocs.io/en/latest/src/userguide/sharing_declarations.html for sharing declarations among Cython files.
    Warning: Extension name 'pygeo.rsfread' does not match fully qualified name 'pygeo.__init__' of 'pygeo/__init__.py'
    Warning: Multiple cython sources found for extension 'pygeo.segyarray': ['pygeo/__init__.py', 'pygeo/segyarray.py']
    See http://cython.readthedocs.io/en/latest/src/userguide/sharing_declarations.html for sharing declarations among Cython files.
    Warning: Extension name 'pygeo.segyarray' does not match fully qualified name 'pygeo.__init__' of 'pygeo/__init__.py'
    Warning: Multiple cython sources found for extension 'pygeo.segyread': ['pygeo/__init__.py', 'pygeo/segyread.pyx']
    See http://cython.readthedocs.io/en/latest/src/userguide/sharing_declarations.html for sharing declarations among Cython files.
    Warning: Extension name 'pygeo.segyread' does not match fully qualified name 'pygeo.__init__' of 'pygeo/__init__.py'
    Warning: Multiple cython sources found for extension 'pygeo.testing': ['pygeo/__init__.py', 'pygeo/testing.py']
    See http://cython.readthedocs.io/en/latest/src/userguide/sharing_declarations.html for sharing declarations among Cython files.
    Warning: Extension name 'pygeo.testing' does not match fully qualified name 'pygeo.__init__' of 'pygeo/__init__.py'
    C:\ProgramData\Anaconda2\lib\distutils\dist.py:267: UserWarning: Unknown distribution option: 'extra_link_args'
      warnings.warn(msg)
    C:\ProgramData\Anaconda2\lib\distutils\dist.py:267: UserWarning: Unknown distribution option: 'extra_compile_args'
      warnings.warn(msg)
    running install
    running build
    running build_py
    creating build
    creating build\lib.win-amd64-2.7
    creating build\lib.win-amd64-2.7\pygeo
    copying pygeo\coord.py -> build\lib.win-amd64-2.7\pygeo
    copying pygeo\fastio.py -> build\lib.win-amd64-2.7\pygeo
    copying pygeo\fullpy.py -> build\lib.win-amd64-2.7\pygeo
    copying pygeo\rsfread.py -> build\lib.win-amd64-2.7\pygeo
    copying pygeo\segyarray.py -> build\lib.win-amd64-2.7\pygeo
    copying pygeo\testing.py -> build\lib.win-amd64-2.7\pygeo
    copying pygeo\__init__.py -> build\lib.win-amd64-2.7\pygeo
    creating build\lib.win-amd64-2.7\pygeo\clfiles
    copying pygeo\clfiles\__init__.py -> build\lib.win-amd64-2.7\pygeo\clfiles
    running build_ext
    building 'pygeo.analysis' extension
    creating build\temp.win-amd64-2.7
    creating build\temp.win-amd64-2.7\Release
    creating build\temp.win-amd64-2.7\Release\pygeo
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/__init__.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/__init__.obj
    __init__.c
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/analysis.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/analysis.obj
    analysis.c
    c:\programdata\anaconda2\lib\site-packages\numpy\core\include\numpy\npy_1_7_deprecated_api.h(12) : Warning Msg: Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
    pygeo/analysis.c(8793) : warning C4293: '<<' : shift count negative or too big, undefined behavior
    pygeo/analysis.c(8803) : warning C4293: '<<' : shift count negative or too big, undefined behavior
    pygeo/analysis.c(8813) : warning C4293: '<<' : shift count negative or too big, undefined behavior
    pygeo/analysis.c(11522) : warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data
    pygeo/analysis.c(11528) : warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/filter.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/filter.obj
    filter.c
    pygeo/filter.c(35) : warning C4267: 'initializing' : conversion from 'size_t' to 'int', possible loss of data
    pygeo/filter.c(53) : warning C4244: '=' : conversion from 'Py_ssize_t' to 'int', possible loss of data
    pygeo/filter.c(59) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
    pygeo/filter.c(73) : warning C4267: 'initializing' : conversion from 'size_t' to 'int', possible loss of data
    pygeo/filter.c(85) : warning C4244: 'function' : conversion from 'float' to 'int', possible loss of data
    pygeo/filter.c(85) : warning C4244: 'function' : conversion from 'float' to 'int', possible loss of data
    pygeo/filter.c(112) : warning C4244: 'initializing' : conversion from 'Py_ssize_t' to 'int', possible loss of data
    pygeo/filter.c(113) : warning C4267: 'initializing' : conversion from 'size_t' to 'int', possible loss of data
    pygeo/filter.c(138) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
    pygeo/filter.c(141) : warning C4244: '=' : conversion from 'Py_ssize_t' to 'int', possible loss of data
    pygeo/filter.c(154) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
    pygeo/filter.c(157) : warning C4244: '=' : conversion from 'Py_ssize_t' to 'int', possible loss of data
    pygeo/filter.c(165) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\ProgramData\Anaconda2\libs /LIBPATH:C:\ProgramData\Anaconda2\PCbuild\amd64 /LIBPATH:C:\ProgramData\Anaconda2\PC\VS9.0\amd64 /EXPORT:initanalysis build\temp.win-amd64-2.7\Release\pygeo/__init__.obj build\temp.win-amd64-2.7\Release\pygeo/analysis.obj build\temp.win-amd64-2.7\Release\pygeo/filter.obj /OUT:build\lib.win-amd64-2.7\pygeo\analysis.pyd /IMPLIB:build\temp.win-amd64-2.7\Release\pygeo\analysis.lib /MANIFESTFILE:build\temp.win-amd64-2.7\Release\pygeo\analysis.pyd.manifest
    analysis.obj : warning LNK4197: export 'initanalysis' specified multiple times; using first specification
       Creating library build\temp.win-amd64-2.7\Release\pygeo\analysis.lib and object build\temp.win-amd64-2.7\Release\pygeo\analysis.exp
    analysis.obj : warning LNK4217: locally defined symbol energyRatio imported in function __pyx_pf_5pygeo_8analysis_8energyratio
    analysis.obj : warning LNK4217: locally defined symbol traceNormalize imported in function __pyx_pf_5pygeo_8analysis_10tracenormalize
    analysis.obj : warning LNK4217: locally defined symbol automaticGainControl imported in function __pyx_pf_5pygeo_8analysis_12agc
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\WinSDK\Bin\x64\mt.exe -nologo -manifest build\temp.win-amd64-2.7\Release\pygeo\analysis.pyd.manifest -outputresource:build\lib.win-amd64-2.7\pygeo\analysis.pyd;2
    building 'pygeo.autopick' extension
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/__init__.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/__init__.obj
    __init__.c
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/autopick.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/autopick.obj
    autopick.c
    c:\programdata\anaconda2\lib\site-packages\numpy\core\include\numpy\npy_1_7_deprecated_api.h(12) : Warning Msg: Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
    pygeo/autopick.c(10468) : warning C4293: '<<' : shift count negative or too big, undefined behavior
    pygeo/autopick.c(10478) : warning C4293: '<<' : shift count negative or too big, undefined behavior
    pygeo/autopick.c(10488) : warning C4293: '<<' : shift count negative or too big, undefined behavior
    pygeo/autopick.c(11261) : warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data
    pygeo/autopick.c(11267) : warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/filter.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/filter.obj
    filter.c
    pygeo/filter.c(35) : warning C4267: 'initializing' : conversion from 'size_t' to 'int', possible loss of data
    pygeo/filter.c(53) : warning C4244: '=' : conversion from 'Py_ssize_t' to 'int', possible loss of data
    pygeo/filter.c(59) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
    pygeo/filter.c(73) : warning C4267: 'initializing' : conversion from 'size_t' to 'int', possible loss of data
    pygeo/filter.c(85) : warning C4244: 'function' : conversion from 'float' to 'int', possible loss of data
    pygeo/filter.c(85) : warning C4244: 'function' : conversion from 'float' to 'int', possible loss of data
    pygeo/filter.c(112) : warning C4244: 'initializing' : conversion from 'Py_ssize_t' to 'int', possible loss of data
    pygeo/filter.c(113) : warning C4267: 'initializing' : conversion from 'size_t' to 'int', possible loss of data
    pygeo/filter.c(138) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
    pygeo/filter.c(141) : warning C4244: '=' : conversion from 'Py_ssize_t' to 'int', possible loss of data
    pygeo/filter.c(154) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
    pygeo/filter.c(157) : warning C4244: '=' : conversion from 'Py_ssize_t' to 'int', possible loss of data
    pygeo/filter.c(165) : warning C4244: '=' : conversion from 'double' to 'float', possible loss of data
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\ProgramData\Anaconda2\libs /LIBPATH:C:\ProgramData\Anaconda2\PCbuild\amd64 /LIBPATH:C:\ProgramData\Anaconda2\PC\VS9.0\amd64 /EXPORT:initautopick build\temp.win-amd64-2.7\Release\pygeo/__init__.obj build\temp.win-amd64-2.7\Release\pygeo/autopick.obj build\temp.win-amd64-2.7\Release\pygeo/filter.obj /OUT:build\lib.win-amd64-2.7\pygeo\autopick.pyd /IMPLIB:build\temp.win-amd64-2.7\Release\pygeo\autopick.lib /MANIFESTFILE:build\temp.win-amd64-2.7\Release\pygeo\autopick.pyd.manifest
    autopick.obj : warning LNK4197: export 'initautopick' specified multiple times; using first specification
       Creating library build\temp.win-amd64-2.7\Release\pygeo\autopick.lib and object build\temp.win-amd64-2.7\Release\pygeo\autopick.exp
    autopick.obj : warning LNK4217: locally defined symbol energyRatio imported in function __pyx_pf_5pygeo_8autopick_energyRatio
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\WinSDK\Bin\x64\mt.exe -nologo -manifest build\temp.win-amd64-2.7\Release\pygeo\autopick.pyd.manifest -outputresource:build\lib.win-amd64-2.7\pygeo\autopick.pyd;2
    building 'pygeo.coord' extension
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/__init__.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/__init__.obj
    __init__.c
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/coord.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/coord.obj
    coord.c
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\ProgramData\Anaconda2\libs /LIBPATH:C:\ProgramData\Anaconda2\PCbuild\amd64 /LIBPATH:C:\ProgramData\Anaconda2\PC\VS9.0\amd64 /EXPORT:initcoord build\temp.win-amd64-2.7\Release\pygeo/__init__.obj build\temp.win-amd64-2.7\Release\pygeo/coord.obj /OUT:build\lib.win-amd64-2.7\pygeo\coord.pyd /IMPLIB:build\temp.win-amd64-2.7\Release\pygeo\coord.lib /MANIFESTFILE:build\temp.win-amd64-2.7\Release\pygeo\coord.pyd.manifest
    coord.obj : warning LNK4197: export 'initcoord' specified multiple times; using first specification
       Creating library build\temp.win-amd64-2.7\Release\pygeo\coord.lib and object build\temp.win-amd64-2.7\Release\pygeo\coord.exp
    building 'pygeo.dipfilt' extension
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/__init__.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/__init__.obj
    __init__.c
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/dipfilt.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/dipfilt.obj
    dipfilt.c
    c:\programdata\anaconda2\lib\site-packages\numpy\core\include\numpy\npy_1_7_deprecated_api.h(12) : Warning Msg: Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
    pygeo/dipfilt.c(11517) : warning C4293: '<<' : shift count negative or too big, undefined behavior
    pygeo/dipfilt.c(11527) : warning C4293: '<<' : shift count negative or too big, undefined behavior
    pygeo/dipfilt.c(11537) : warning C4293: '<<' : shift count negative or too big, undefined behavior
    pygeo/dipfilt.c(12915) : warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data
    pygeo/dipfilt.c(12921) : warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\ProgramData\Anaconda2\libs /LIBPATH:C:\ProgramData\Anaconda2\PCbuild\amd64 /LIBPATH:C:\ProgramData\Anaconda2\PC\VS9.0\amd64 /EXPORT:initdipfilt build\temp.win-amd64-2.7\Release\pygeo/__init__.obj build\temp.win-amd64-2.7\Release\pygeo/dipfilt.obj /OUT:build\lib.win-amd64-2.7\pygeo\dipfilt.pyd /IMPLIB:build\temp.win-amd64-2.7\Release\pygeo\dipfilt.lib /MANIFESTFILE:build\temp.win-amd64-2.7\Release\pygeo\dipfilt.pyd.manifest
    dipfilt.obj : warning LNK4197: export 'initdipfilt' specified multiple times; using first specification
       Creating library build\temp.win-amd64-2.7\Release\pygeo\dipfilt.lib and object build\temp.win-amd64-2.7\Release\pygeo\dipfilt.exp
    building 'pygeo.fastio' extension
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/__init__.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/__init__.obj
    __init__.c
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/fastio.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/fastio.obj
    fastio.c
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\ProgramData\Anaconda2\libs /LIBPATH:C:\ProgramData\Anaconda2\PCbuild\amd64 /LIBPATH:C:\ProgramData\Anaconda2\PC\VS9.0\amd64 /EXPORT:initfastio build\temp.win-amd64-2.7\Release\pygeo/__init__.obj build\temp.win-amd64-2.7\Release\pygeo/fastio.obj /OUT:build\lib.win-amd64-2.7\pygeo\fastio.pyd /IMPLIB:build\temp.win-amd64-2.7\Release\pygeo\fastio.lib /MANIFESTFILE:build\temp.win-amd64-2.7\Release\pygeo\fastio.pyd.manifest
    fastio.obj : warning LNK4197: export 'initfastio' specified multiple times; using first specification
       Creating library build\temp.win-amd64-2.7\Release\pygeo\fastio.lib and object build\temp.win-amd64-2.7\Release\pygeo\fastio.exp
    building 'pygeo.fullpy' extension
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/__init__.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/__init__.obj
    __init__.c
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/fullpy.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/fullpy.obj
    fullpy.c
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\ProgramData\Anaconda2\libs /LIBPATH:C:\ProgramData\Anaconda2\PCbuild\amd64 /LIBPATH:C:\ProgramData\Anaconda2\PC\VS9.0\amd64 /EXPORT:initfullpy build\temp.win-amd64-2.7\Release\pygeo/__init__.obj build\temp.win-amd64-2.7\Release\pygeo/fullpy.obj /OUT:build\lib.win-amd64-2.7\pygeo\fullpy.pyd /IMPLIB:build\temp.win-amd64-2.7\Release\pygeo\fullpy.lib /MANIFESTFILE:build\temp.win-amd64-2.7\Release\pygeo\fullpy.pyd.manifest
    fullpy.obj : warning LNK4197: export 'initfullpy' specified multiple times; using first specification
       Creating library build\temp.win-amd64-2.7\Release\pygeo\fullpy.lib and object build\temp.win-amd64-2.7\Release\pygeo\fullpy.exp
    building 'pygeo.rsfread' extension
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/__init__.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/__init__.obj
    __init__.c
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/rsfread.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/rsfread.obj
    rsfread.c
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\ProgramData\Anaconda2\libs /LIBPATH:C:\ProgramData\Anaconda2\PCbuild\amd64 /LIBPATH:C:\ProgramData\Anaconda2\PC\VS9.0\amd64 /EXPORT:initrsfread build\temp.win-amd64-2.7\Release\pygeo/__init__.obj build\temp.win-amd64-2.7\Release\pygeo/rsfread.obj /OUT:build\lib.win-amd64-2.7\pygeo\rsfread.pyd /IMPLIB:build\temp.win-amd64-2.7\Release\pygeo\rsfread.lib /MANIFESTFILE:build\temp.win-amd64-2.7\Release\pygeo\rsfread.pyd.manifest
    rsfread.obj : warning LNK4197: export 'initrsfread' specified multiple times; using first specification
       Creating library build\temp.win-amd64-2.7\Release\pygeo\rsfread.lib and object build\temp.win-amd64-2.7\Release\pygeo\rsfread.exp
    building 'pygeo.segyarray' extension
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/__init__.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/__init__.obj
    __init__.c
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/segyarray.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/segyarray.obj
    segyarray.c
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\link.exe /DLL /nologo /INCREMENTAL:NO /LIBPATH:C:\ProgramData\Anaconda2\libs /LIBPATH:C:\ProgramData\Anaconda2\PCbuild\amd64 /LIBPATH:C:\ProgramData\Anaconda2\PC\VS9.0\amd64 /EXPORT:initsegyarray build\temp.win-amd64-2.7\Release\pygeo/__init__.obj build\temp.win-amd64-2.7\Release\pygeo/segyarray.obj /OUT:build\lib.win-amd64-2.7\pygeo\segyarray.pyd /IMPLIB:build\temp.win-amd64-2.7\Release\pygeo\segyarray.lib /MANIFESTFILE:build\temp.win-amd64-2.7\Release\pygeo\segyarray.pyd.manifest
    segyarray.obj : warning LNK4197: export 'initsegyarray' specified multiple times; using first specification
       Creating library build\temp.win-amd64-2.7\Release\pygeo\segyarray.lib and object build\temp.win-amd64-2.7\Release\pygeo\segyarray.exp
    building 'pygeo.segyread' extension
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/__init__.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/__init__.obj
    __init__.c
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/segyread.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/segyread.obj
    segyread.c
    c:\programdata\anaconda2\lib\site-packages\numpy\core\include\numpy\npy_1_7_deprecated_api.h(12) : Warning Msg: Using deprecated NumPy API, disable it by #defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
    pygeo/segyread.c(25627) : warning C4293: '<<' : shift count negative or too big, undefined behavior
    pygeo/segyread.c(25637) : warning C4293: '<<' : shift count negative or too big, undefined behavior
    pygeo/segyread.c(25647) : warning C4293: '<<' : shift count negative or too big, undefined behavior
    pygeo/segyread.c(26974) : warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data
    pygeo/segyread.c(26980) : warning C4244: 'initializing' : conversion from 'double' to 'float', possible loss of data
    C:\Users\gg-admin\AppData\Local\Programs\Common\Microsoft\Visual C++ for Python\9.0\VC\Bin\amd64\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -IC:\ProgramData\Anaconda2\include -IC:\ProgramData\Anaconda2\PC -IC:\ProgramData\Anaconda2\lib\site-packages\numpy\core\include /Tcpygeo/fpconvert.c /Fobuild\temp.win-amd64-2.7\Release\pygeo/fpconvert.obj
    fpconvert.c
    c:\users\gg-admin\appdata\local\temp\pip-build-lgx5hz\pygeo\pygeo\fpconvert.h(3) : fatal error C1083: Cannot open include file: 'netinet/in.h': No such file or directory
    error: command 'C:\\Users\\gg-admin\\AppData\\Local\\Programs\\Common\\Microsoft\\Visual C++ for Python\\9.0\\VC\\Bin\\amd64\\cl.exe' failed with exit status 2

    ----------------------------------------
Command "C:\ProgramData\Anaconda2\python.exe -u -c "import setuptools, tokenize;__file__='c:\\users\\gg-admin\\appdata\\local\\temp\\pip-build-lgx5hz\\pygeo\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record c:\users\gg-admin\appdata\local\temp\pip-me6wud-record\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in c:\users\gg-admin\appdata\local\temp\pip-build-lgx5hz\pygeo\
mpu-creare commented 7 years ago

@florianbeyer What's your conda version?

florianbeyer commented 7 years ago

Python 2.7.13 |Anaconda 4.4.0 (64-bit)| (default, May 11 2017, 13:17:26) [MSC v.1500 64 bit (AMD64)] on win32

mpu-creare commented 7 years ago

Okay, just pushed a new version 0.2.0, let me know if that solves your problems.

mpu-creare commented 7 years ago

Closing this out.