pypa / pip

The Python package installer
https://pip.pypa.io/
MIT License
9.46k stars 3k forks source link

Make suggestion when the current stable version has no wheel but a pre-release does #4795

Open Husky2490 opened 6 years ago

Husky2490 commented 6 years ago

Description:

I was trying to install two Python modules, NumPy and SciPy, NumPy installed successfully but SciPy did not. After a while of trying to figure out why it was complaining about missing a bunch of files I decided to check on PyPi to see if there was an alternate download. And, lo and behold, none of the files listed for download were for version 0.19.1, which pip said was the most recent, but instead version 1.0.0rc2, released today (October 18th). After a bit of trial and error, I worked out how to force-feed the file to pip.

What I've run:

I copied the entire cmd prompt session into the attached txt file below pip-bug_cmd-line-output.txt

Expand for log (edited by @pradyunsg)

Microsoft Windows [Version 10.0.15063]
(c) 2017 Microsoft Corporation. All rights reserved.

C:\windows\system32>pip install NumPy SciPy
Collecting NumPy
  Using cached numpy-1.13.3-cp36-none-win_amd64.whl
Collecting SciPy
  Using cached scipy-0.19.1.tar.gz
Installing collected packages: NumPy, SciPy
  Running setup.py install for SciPy ... error
    Complete output from command "c:\program files\python36\python.exe" -u -c "import setuptools, tokenize;__file__='C:\\Users\\s530101\\AppData\\Local\\Temp\\pip-build-gyp34ubz\\SciPy\\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\s530101\AppData\Local\Temp\pip-qeq_kx7u-record\install-record.txt --single-version-externally-managed --compile:

    Note: if you need reliable uninstall behavior, then install
    with pip instead of using `setup.py install`:

      - `pip install .`       (from a git repo or downloaded source
                               release)
      - `pip install scipy`   (last SciPy release on PyPI)

    lapack_opt_info:
    lapack_mkl_info:
      libraries mkl_rt not found in ['c:\\program files\\python36\\lib', 'C:\\', 'c:\\program files\\python36\\libs']
      NOT AVAILABLE

    openblas_lapack_info:
    c:\program files\python36\lib\site-packages\numpy\distutils\system_info.py:655: UserWarning: Specified path c:\opt\64\lib is invalid.
      return self.get_paths(self.section, key)
      libraries libopenblas_v0.2.20_mingwpy not found in []
      NOT AVAILABLE

    atlas_3_10_threads_info:
    Setting PTATLAS=ATLAS
      libraries tatlas,tatlas not found in c:\program files\python36\lib
      libraries lapack_atlas not found in c:\program files\python36\lib
      libraries tatlas,tatlas not found in C:\
      libraries lapack_atlas not found in C:\
      libraries tatlas,tatlas not found in c:\program files\python36\libs
      libraries lapack_atlas not found in c:\program files\python36\libs
    
      NOT AVAILABLE

    atlas_3_10_info:
      libraries satlas,satlas not found in c:\program files\python36\lib
      libraries lapack_atlas not found in c:\program files\python36\lib
      libraries satlas,satlas not found in C:\
      libraries lapack_atlas not found in C:\
      libraries satlas,satlas not found in c:\program files\python36\libs
      libraries lapack_atlas not found in c:\program files\python36\libs
    
      NOT AVAILABLE

    atlas_threads_info:
    Setting PTATLAS=ATLAS
      libraries ptf77blas,ptcblas,atlas not found in c:\program files\python36\lib
      libraries lapack_atlas not found in c:\program files\python36\lib
      libraries ptf77blas,ptcblas,atlas not found in C:\
      libraries lapack_atlas not found in C:\
      libraries ptf77blas,ptcblas,atlas not found in c:\program files\python36\libs
      libraries lapack_atlas not found in c:\program files\python36\libs
    
      NOT AVAILABLE

    atlas_info:
      libraries f77blas,cblas,atlas not found in c:\program files\python36\lib
      libraries lapack_atlas not found in c:\program files\python36\lib
      libraries f77blas,cblas,atlas not found in C:\
      libraries lapack_atlas not found in C:\
      libraries f77blas,cblas,atlas not found in c:\program files\python36\libs
      libraries lapack_atlas not found in c:\program files\python36\libs
    
      NOT AVAILABLE

    c:\program files\python36\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:\\program files\\python36\\lib', 'C:\\', 'c:\\program files\\python36\\libs']
      NOT AVAILABLE

    c:\program files\python36\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:\program files\python36\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 "", line 1, in 
      File "C:\Users\s530101\AppData\Local\Temp\pip-build-gyp34ubz\SciPy\setup.py", line 416, in 
        setup_package()
      File "C:\Users\s530101\AppData\Local\Temp\pip-build-gyp34ubz\SciPy\setup.py", line 412, in setup_package
        setup(**metadata)
      File "c:\program files\python36\lib\site-packages\numpy\distutils\core.py", line 135, in setup
        config = configuration()
      File "C:\Users\s530101\AppData\Local\Temp\pip-build-gyp34ubz\SciPy\setup.py", line 336, in configuration
        config.add_subpackage('scipy')
      File "c:\program files\python36\lib\site-packages\numpy\distutils\misc_util.py", line 1029, in add_subpackage
        caller_level = 2)
      File "c:\program files\python36\lib\site-packages\numpy\distutils\misc_util.py", line 998, in get_subpackage
        caller_level = caller_level + 1)
      File "c:\program files\python36\lib\site-packages\numpy\distutils\misc_util.py", line 935, 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:\program files\python36\lib\site-packages\numpy\distutils\misc_util.py", line 1029, in add_subpackage
        caller_level = 2)
      File "c:\program files\python36\lib\site-packages\numpy\distutils\misc_util.py", line 998, in get_subpackage
        caller_level = caller_level + 1)
      File "c:\program files\python36\lib\site-packages\numpy\distutils\misc_util.py", line 935, 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

    ----------------------------------------
Command ""c:\program files\python36\python.exe" -u -c "import setuptools, tokenize;__file__='C:\\Users\\s530101\\AppData\\Local\\Temp\\pip-build-gyp34ubz\\SciPy\\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\s530101\AppData\Local\Temp\pip-qeq_kx7u-record\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in C:\Users\s530101\AppData\Local\Temp\pip-build-gyp34ubz\SciPy\

C:\windows\system32>pip -h

Usage:
  pip  [options]

Commands:
  install                     Install packages.
  download                    Download packages.
  uninstall                   Uninstall packages.
  freeze                      Output installed packages in requirements format.
  list                        List installed packages.
  show                        Show information about installed packages.
  check                       Verify installed packages have compatible dependencies.
  search                      Search PyPI for packages.
  wheel                       Build wheels from your requirements.
  hash                        Compute hashes of package archives.
  completion                  A helper command used for command completion.
  help                        Show help for commands.

General Options:
  -h, --help                  Show help.
  --isolated                  Run pip in an isolated mode, ignoring
                              environment variables and user configuration.
  -v, --verbose               Give more output. Option is additive, and can be
                              used up to 3 times.
  -V, --version               Show version and exit.
  -q, --quiet                 Give less output. Option is additive, and can be
                              used up to 3 times (corresponding to WARNING,
                              ERROR, and CRITICAL logging levels).
  --log                 Path to a verbose appending log.
  --proxy              Specify a proxy in the form
                              [user:passwd@]proxy.server:port.
  --retries          Maximum number of retries each connection should
                              attempt (default 5 times).
  --timeout              Set the socket timeout (default 15 seconds).
  --exists-action     Default action when a path already exists:
                              (s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.
  --trusted-host    Mark this host as trusted, even though it does
                              not have valid or any HTTPS.
  --cert                Path to alternate CA bundle.
  --client-cert         Path to SSL client certificate, a single file
                              containing the private key and the certificate
                              in PEM format.
  --cache-dir            Store the cache data in .
  --no-cache-dir              Disable the cache.
  --disable-pip-version-check
                              Don't periodically check PyPI to determine
                              whether a new version of pip is available for
                              download. Implied with --no-index.

C:\windows\system32>pip install -h

Usage:
  pip install [options]  [package-index-options] ...
  pip install [options] -r  [package-index-options] ...
  pip install [options] [-e]  ...
  pip install [options] [-e]  ...
  pip install [options]  ...

Description:
  Install packages from:

  - PyPI (and other indexes) using requirement specifiers.
  - VCS project urls.
  - Local project directories.
  - Local or remote source archives.

  pip also supports installing from "requirements files", which provide
  an easy way to specify a whole environment to be installed.

Install Options:
  -c, --constraint      Constrain versions using the given constraints
                              file. This option can be used multiple times.
  -e, --editable    Install a project in editable mode (i.e.
                              setuptools "develop mode") from a local project
                              path or a VCS url.
  -r, --requirement     Install from the given requirements file. This
                              option can be used multiple times.
  -b, --build            Directory to unpack packages into and build in.
  -t, --target           Install packages into . By default this
                              will not replace existing files/folders in
                              . Use --upgrade to replace existing
                              packages in  with new versions.
  -d, --download         Download packages into  instead of
                              installing them, regardless of what's already
                              installed.
  --src                  Directory to check out editable projects into.
                              The default in a virtualenv is "/src". The default for global installs is
                              "/src".
  -U, --upgrade               Upgrade all specified packages to the newest
                              available version. The handling of dependencies
                              depends on the upgrade-strategy used.
  --upgrade-strategy 
                              Determines how dependency upgrading should be
                              handled. "eager" - dependencies are upgraded
                              regardless of whether the currently installed
                              version satisfies the requirements of the
                              upgraded package(s). "only-if-needed" -  are
                              upgraded only when they do not satisfy the
                              requirements of the upgraded package(s).
  --force-reinstall           When upgrading, reinstall all packages even if
                              they are already up-to-date.
  -I, --ignore-installed      Ignore the installed packages (reinstalling
                              instead).
  --ignore-requires-python    Ignore the Requires-Python information.
  --no-deps                   Don't install package dependencies.
  --install-option   Extra arguments to be supplied to the setup.py
                              install command (use like --install-option="--
                              install-scripts=/usr/local/bin"). Use multiple
                              --install-option options to pass multiple
                              options to setup.py install. If you are using an
                              option with a directory path, be sure to use
                              absolute path.
  --global-option    Extra global options to be supplied to the
                              setup.py call before the install command.
  --user                      Install to the Python user install directory for
                              your platform. Typically ~/.local/, or
                              %APPDATA%\Python on Windows. (See the Python
                              documentation for site.USER_BASE for full
                              details.)
  --egg                       Install packages as eggs, not 'flat', like pip
                              normally does. This option is not about
                              installing *from* eggs. (WARNING: Because this
                              option overrides pip's normal install logic,
                              requirements files may not behave as expected.)
  --root                 Install everything relative to this alternate
                              root directory.
  --prefix               Installation prefix where lib, bin and other
                              top-level folders are placed
  --compile                   Compile py files to pyc
  --no-compile                Do not compile py files to pyc
  --no-use-wheel              Do not Find and prefer wheel archives when
                              searching indexes and find-links locations.
                              DEPRECATED in favour of --no-binary.
  --no-binary 
                              Do not use binary packages. Can be supplied
                              multiple times, and each time adds to the
                              existing value. Accepts either :all: to disable
                              all binary packages, :none: to empty the set, or
                              one or more package names with commas between
                              them. Note that some packages are tricky to
                              compile and may fail to install when this option
                              is used on them.
  --only-binary 
                              Do not use source packages. Can be supplied
                              multiple times, and each time adds to the
                              existing value. Accepts either :all: to disable
                              all source packages, :none: to empty the set, or
                              one or more package names with commas between
                              them. Packages without binary distributions will
                              fail to install when this option is used on
                              them.
  --pre                       Include pre-release and development versions. By
                              default, pip only finds stable versions.
  --no-clean                  Don't clean up build directories.
  --require-hashes            Require a hash to check each requirement
                              against, for repeatable installs. This option is
                              implied when any package in a requirements file
                              has a --hash option.

Package Index Options (including deprecated options):
  -i, --index-url        Base URL of Python Package Index (default
                              https://pypi.python.org/simple). This should
                              point to a repository compliant with PEP 503
                              (the simple repository API) or a local directory
                              laid out in the same format.
  --extra-index-url      Extra URLs of package indexes to use in addition
                              to --index-url. Should follow the same rules as
                              --index-url.
  --no-index                  Ignore package index (only looking at --find-
                              links URLs instead).
  -f, --find-links       If a url or path to an html file, then parse for
                              links to archives. If a local path or file://
                              url that's a directory, then look for archives
                              in the directory listing.
  --process-dependency-links  Enable the processing of dependency links.

General Options:
  -h, --help                  Show help.
  --isolated                  Run pip in an isolated mode, ignoring
                              environment variables and user configuration.
  -v, --verbose               Give more output. Option is additive, and can be
                              used up to 3 times.
  -V, --version               Show version and exit.
  -q, --quiet                 Give less output. Option is additive, and can be
                              used up to 3 times (corresponding to WARNING,
                              ERROR, and CRITICAL logging levels).
  --log                 Path to a verbose appending log.
  --proxy              Specify a proxy in the form
                              [user:passwd@]proxy.server:port.
  --retries          Maximum number of retries each connection should
                              attempt (default 5 times).
  --timeout              Set the socket timeout (default 15 seconds).
  --exists-action     Default action when a path already exists:
                              (s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.
  --trusted-host    Mark this host as trusted, even though it does
                              not have valid or any HTTPS.
  --cert                Path to alternate CA bundle.
  --client-cert         Path to SSL client certificate, a single file
                              containing the private key and the certificate
                              in PEM format.
  --cache-dir            Store the cache data in .
  --no-cache-dir              Disable the cache.
  --disable-pip-version-check
                              Don't periodically check PyPI to determine
                              whether a new version of pip is available for
                              download. Implied with --no-index.

C:\windows\system32>pip install -U
You must give at least one requirement to install (see "pip help install")

C:\windows\system32>pip install -U pip
Requirement already up-to-date: pip in c:\program files\python36\lib\site-packages

C:\windows\system32>pip install -U SciPi
Collecting SciPi
  Could not find a version that satisfies the requirement SciPi (from versions: )
No matching distribution found for SciPi

C:\windows\system32>pip install -U SciPy
Collecting SciPy
  Using cached scipy-0.19.1.tar.gz
Installing collected packages: SciPy
  Running setup.py install for SciPy ... error
    Complete output from command "c:\program files\python36\python.exe" -u -c "import setuptools, tokenize;__file__='C:\\Users\\s530101\\AppData\\Local\\Temp\\pip-build-m91wwnr_\\SciPy\\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\s530101\AppData\Local\Temp\pip-bu54g7sh-record\install-record.txt --single-version-externally-managed --compile:

    Note: if you need reliable uninstall behavior, then install
    with pip instead of using `setup.py install`:

      - `pip install .`       (from a git repo or downloaded source
                               release)
      - `pip install scipy`   (last SciPy release on PyPI)

    lapack_opt_info:
    lapack_mkl_info:
      libraries mkl_rt not found in ['c:\\program files\\python36\\lib', 'C:\\', 'c:\\program files\\python36\\libs']
      NOT AVAILABLE

    openblas_lapack_info:
    c:\program files\python36\lib\site-packages\numpy\distutils\system_info.py:655: UserWarning: Specified path c:\opt\64\lib is invalid.
      return self.get_paths(self.section, key)
      libraries libopenblas_v0.2.20_mingwpy not found in []
      NOT AVAILABLE

    atlas_3_10_threads_info:
    Setting PTATLAS=ATLAS
      libraries tatlas,tatlas not found in c:\program files\python36\lib
      libraries lapack_atlas not found in c:\program files\python36\lib
      libraries tatlas,tatlas not found in C:\
      libraries lapack_atlas not found in C:\
      libraries tatlas,tatlas not found in c:\program files\python36\libs
      libraries lapack_atlas not found in c:\program files\python36\libs
    
      NOT AVAILABLE

    atlas_3_10_info:
      libraries satlas,satlas not found in c:\program files\python36\lib
      libraries lapack_atlas not found in c:\program files\python36\lib
      libraries satlas,satlas not found in C:\
      libraries lapack_atlas not found in C:\
      libraries satlas,satlas not found in c:\program files\python36\libs
      libraries lapack_atlas not found in c:\program files\python36\libs
    
      NOT AVAILABLE

    atlas_threads_info:
    Setting PTATLAS=ATLAS
      libraries ptf77blas,ptcblas,atlas not found in c:\program files\python36\lib
      libraries lapack_atlas not found in c:\program files\python36\lib
      libraries ptf77blas,ptcblas,atlas not found in C:\
      libraries lapack_atlas not found in C:\
      libraries ptf77blas,ptcblas,atlas not found in c:\program files\python36\libs
      libraries lapack_atlas not found in c:\program files\python36\libs
    
      NOT AVAILABLE

    atlas_info:
      libraries f77blas,cblas,atlas not found in c:\program files\python36\lib
      libraries lapack_atlas not found in c:\program files\python36\lib
      libraries f77blas,cblas,atlas not found in C:\
      libraries lapack_atlas not found in C:\
      libraries f77blas,cblas,atlas not found in c:\program files\python36\libs
      libraries lapack_atlas not found in c:\program files\python36\libs
    
      NOT AVAILABLE

    c:\program files\python36\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:\\program files\\python36\\lib', 'C:\\', 'c:\\program files\\python36\\libs']
      NOT AVAILABLE

    c:\program files\python36\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:\program files\python36\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 "", line 1, in 
      File "C:\Users\s530101\AppData\Local\Temp\pip-build-m91wwnr_\SciPy\setup.py", line 416, in 
        setup_package()
      File "C:\Users\s530101\AppData\Local\Temp\pip-build-m91wwnr_\SciPy\setup.py", line 412, in setup_package
        setup(**metadata)
      File "c:\program files\python36\lib\site-packages\numpy\distutils\core.py", line 135, in setup
        config = configuration()
      File "C:\Users\s530101\AppData\Local\Temp\pip-build-m91wwnr_\SciPy\setup.py", line 336, in configuration
        config.add_subpackage('scipy')
      File "c:\program files\python36\lib\site-packages\numpy\distutils\misc_util.py", line 1029, in add_subpackage
        caller_level = 2)
      File "c:\program files\python36\lib\site-packages\numpy\distutils\misc_util.py", line 998, in get_subpackage
        caller_level = caller_level + 1)
      File "c:\program files\python36\lib\site-packages\numpy\distutils\misc_util.py", line 935, 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:\program files\python36\lib\site-packages\numpy\distutils\misc_util.py", line 1029, in add_subpackage
        caller_level = 2)
      File "c:\program files\python36\lib\site-packages\numpy\distutils\misc_util.py", line 998, in get_subpackage
        caller_level = caller_level + 1)
      File "c:\program files\python36\lib\site-packages\numpy\distutils\misc_util.py", line 935, 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

    ----------------------------------------
Command ""c:\program files\python36\python.exe" -u -c "import setuptools, tokenize;__file__='C:\\Users\\s530101\\AppData\\Local\\Temp\\pip-build-m91wwnr_\\SciPy\\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\s530101\AppData\Local\Temp\pip-bu54g7sh-record\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in C:\Users\s530101\AppData\Local\Temp\pip-build-m91wwnr_\SciPy\

C:\windows\system32>pip install SciPy -v
Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect
Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect
Collecting SciPy
  1 location(s) to search for versions of SciPy:
  * https://pypi.python.org/simple/scipy/
  Getting page https://pypi.python.org/simple/scipy/
  Looking up "https://pypi.python.org/simple/scipy/" in the cache
  Current age based on date: 705
  Freshness lifetime from max-age: 600
  Freshness lifetime from request max-age: 600
  The cached response is "stale" with no etag, purging
  Starting new HTTPS connection (1): pypi.python.org
  "GET /simple/scipy/ HTTP/1.1" 200 22955
  Updating cache with response from "https://pypi.python.org/simple/scipy/"
  Caching b/c date exists and max-age > 0
  Analyzing links from page https://pypi.python.org/simple/scipy/
    Skipping link https://pypi.python.org/packages/00/0f/060ec52cb74dc8df1a7ef1a524173eb0bcd329110404869b392685cfc5c8/scipy-0.15.1-cp27-cp27mu-manylinux1_x86_64.whl#md5=aaac02e6535742ab02f2075129890714 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/01/a1/dce70d47377d662aa4b0895df8431aee92cea6faefaab9dae21b0f901ded/scipy-0.18.0.tar.gz#md5=d70e7f533622ab705bc016dac328d93e (from https://pypi.python.org/simple/scipy/), version: 0.18.0
    Skipping link https://pypi.python.org/packages/02/65/9b0bbb907b6eb3ddde496f501babc6f573698b441a6dddc11400d63cc1bc/scipy-1.0.0rc2-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=28db2e456d9adc1dad6f4021c5b16f06 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/02/7b/97fcdb6ea1f618b5553efe8ebba43af76a7970219a8aa7824434104d42fd/scipy-0.16.1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=c24f6d9fb094fff8d2cbd238d7716d21 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/03/69/2c390ce63261f949f14f09e44e56c6f45f678919279b5e9effdf9f52292e/scipy-1.0.0rc2-cp36-cp36m-manylinux1_i686.whl#md5=99a9c8c0ece961e9ecda3b934edf3dbc (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/03/85/94259e11ad53aad9e508c2a4e80d7db603c4180c4cacd0f02c51563aa15f/scipy-0.15.0-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=f6c96a2cb737ad9f3f47db5089f8eba4 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/05/5e/973bf71cfa865d962a68893e35e366a0a7ac0b713bc398b4e584c1bed982/scipy-0.17.1.tar.gz#md5=8987b9a3e3cd79218a0a423b21c8e4de (from https://pypi.python.org/simple/scipy/), version: 0.17.1
    Found link https://pypi.python.org/packages/06/d3/5389428400e45a6f1babbf3c1c01070507f320b3030bb56116f7b0a8abe3/scipy-1.0.0rc1-cp36-none-win_amd64.whl#md5=4805f42cba8f620a0c2594ed89265114 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 1.0.0rc1
    Skipping link https://pypi.python.org/packages/06/f1/717f43612df6f0b02560a1f91c262fc0add56abb73df878faefc2f21856e/scipy-0.17.0-cp34-cp34m-manylinux1_x86_64.whl#md5=04060803f2a74270400e8c5bcedf1a13 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/07/2f/a21e12fecad483b9b624dca1dc6802822519b9325f46c58d829e4f9e1ddd/scipy-0.19.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=4cda63dc7b73bd03bdf9e8ebc6027526 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/07/59/a7746e40e709a23f14b3bac4567fd6ec529e72545c54929b9a66ef5c7771/scipy-0.15.0-cp27-cp27m-manylinux1_x86_64.whl#md5=964cec623705873ec1c37408ecf96de6 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/07/d4/ff7d404e09fc460599b9754ddc8293a11f33e52e23003960148a35f415d0/scipy-0.18.0rc2-cp27-cp27m-manylinux1_x86_64.whl#md5=608a25181f419e35fc6f3db31450d758 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/08/b7/205769a2a7d1d813b88e2936876c218ab902958160c99c26670c907fd14c/scipy-0.16.1-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=6083faba0ca1ff06073b0f60129da7a6 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/09/0c/f9a5f5b33bd78255001f78174ecae5dc9b4247802204968075559a836a3c/scipy-0.17.1-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=fb8db0983f17230f0ea012de425d8184 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/0c/8a/be599e98c19d09040e2cba547558aa74f977d26fa6759d977a45bb2133c7/scipy-1.0.0rc1-cp35-none-win_amd64.whl#md5=bad39e2273db21f449bf8f6117dda436 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/0d/6d/953ec7721b3addfe36b55f77ba6b70ffddcfa66db427816954b43bd85e65/scipy-0.18.1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=91cbcf832f13e139950cc2ee1395b461 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/0d/93/d7dbecc8412ca69b78a8e95d227b492c1ae3c217dd7efd1b3d6319abe7f9/scipy-0.17.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=c0f259db6fdd8554182b9dc638a1dc29 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/0e/46/da8d7166102d29695330f7c0b912955498542988542c0d2ae3ea0389c68d/scipy-0.19.1-cp36-cp36m-manylinux1_x86_64.whl#md5=65b1667ac56861da4cbc609960ed735b (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/10/fe/9910b5b366d4657c5bcce29e1d7b3c472166a5b0938be39c4499744848ea/scipy-0.17.1-cp34-cp34m-manylinux1_i686.whl#md5=5effa7220474b0071a3756f512076a21 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/11/72/838cbee2404fad56002e0160bf9028e9dbc71c95c66d8093b70b19df0e35/scipy-0.16.1-cp27-cp27mu-manylinux1_x86_64.whl#md5=487ccca7b1527897e96e6181c04f7270 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/11/d7/924204fe223875f8f23cf5d4ee596b0f087cdb47254e659a05b5776264b8/scipy-0.10.0-cp27-cp27m-manylinux1_x86_64.whl#md5=ae132f3fe930929c15ec844e21ea9e04 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/11/d7/dd05cf7ff2bde32d5f079755f265db3173d808071fb91eec569f784c3486/scipy-0.12.0-cp27-cp27mu-manylinux1_x86_64.whl#md5=775790ddf78944663edebdb9dd7f5ac5 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/12/62/ee2b48d5117d6897f13d1e3e01cae50b479ab73f9d7131686808edcac5c1/scipy-0.9.0-cp27-cp27mu-manylinux1_x86_64.whl#md5=d640d7fb80614a959b3bdaf3ffb22673 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/13/61/9428c6774978b0477067fac6a96a3da156731545b84bac86dda505bff81a/scipy-1.0.0rc1-cp27-cp27mu-manylinux1_i686.whl#md5=5e6b24ceb04e412d17aed6014542c67c (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/13/b2/70a4992e0ef711122ba1d7fc0edc5fe121b105f768c020eff1ffac2ea8a0/scipy-0.14.0-cp27-cp27mu-manylinux1_x86_64.whl#md5=1823637e1d7c2a86b4edc1ef589c9137 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/13/cb/8e74d28e1519b34636e4d985d49d01c23778064e01eb102914f844cd6051/scipy-0.18.1-cp27-cp27mu-manylinux1_x86_64.whl#md5=8819378eceb1d7a51042031a7846f394 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/13/d2/4e83ca14320c2836138839a2660700cbdcb548068e9abe56da75259ea3db/scipy-0.17.1-cp35-cp35m-manylinux1_i686.whl#md5=3ab2d58731c6cef9e37381c738258e09 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/14/34/a66c289e70e727698cd1dd3d3680c59a60fdc42eb52a22ebb0e3484e9f7f/scipy-1.0.0rc1.tar.gz#md5=e691dcdec6ee5f075ba74683ba27f2d3 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 1.0.0rc1
    Found link https://pypi.python.org/packages/14/f1/d753f3ce965fdf8c84691d8fce06b650f105d00f38a21bbb99b04c235abd/scipy-0.18.0rc2.zip#md5=21decd4fb8f85e2a389864b35f0b879d (from https://pypi.python.org/simple/scipy/), version: 0.18.0rc2
    Found link https://pypi.python.org/packages/16/87/fdd4d069b1e784d4598605c20d8a7c535883b298aef960dc286b395359d7/scipy-0.17.0.tar.gz#md5=5ff2971e1ce90e762c59d2cd84837224 (from https://pypi.python.org/simple/scipy/), version: 0.17.0
    Found link https://pypi.python.org/packages/17/4c/3c01634c5332e1969a27fe5b249fc72a9e79c178f841aedc2635bcf61dee/scipy-0.14.1.tar.gz#md5=1bfedd3197b3e3f8cd131ae2c06a1bf5 (from https://pypi.python.org/simple/scipy/), version: 0.14.1
    Skipping link https://pypi.python.org/packages/17/c8/bc748f59f854a0b53db874cb75f4b7c6c5a4c1f666d337bd230e71820f20/scipy-1.0.0rc1-cp35-cp35m-manylinux1_x86_64.whl#md5=3011a5c0bbd4da56dc40c502724152f0 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/18/5f/194c31e058c6f1ce1fb42e01868de346e549806e9c73d3772a71bf631259/scipy-0.13.1-cp34-cp34m-manylinux1_x86_64.whl#md5=2366a311fc5750fefd15e346025d28da (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/18/a9/21de57e031a441a5135236dd3e14c84e48030d6436619212b01aad821a0e/scipy-0.12.0.zip#md5=e4b9f3cb2e965fc8751faedfb9164d08 (from https://pypi.python.org/simple/scipy/), version: 0.12.0
    Skipping link https://pypi.python.org/packages/18/f6/42a07d7835a51cd73adfdf1b7d1f842bbc4792be29fb3574c87854fb4e28/scipy-0.13.2-cp33-cp33m-manylinux1_x86_64.whl#md5=0898feeb05585dc36904d7c657ccfe58 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/19/77/85ea9ecfe75679f792bff808a814cc2c165124f9413ce6825bd28b36c3ba/scipy-1.0.0rc2-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=e4660e4958aefdfe1b27f520eed84751 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/19/85/3add57ed6cdfbe798aa35e63bc3c8d159fed13e437841c32cf73bac850b6/scipy-0.16.0-cp35-cp35m-manylinux1_x86_64.whl#md5=ccd82ddc3e3b7f0d35c04a5fe248f699 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/19/b1/a3ea10ee5425ca3c04f63aba1bb72e4d8f5535db99389016e980063238ac/scipy-0.9.0-cp26-cp26mu-manylinux1_x86_64.whl#md5=234d2300c7654b86cecaacfabc10812f (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/19/bc/bebd680620eab9a0d28db680421fc28629f3a8f77b4798976a3d2c18774b/scipy-0.14.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl#md5=de679794f46812c784845835371539f4 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/1a/65/0a776262af035e07cb499d551114c6de00a5816b652f8dfcf95be5df214a/scipy-0.13.3-cp34-cp34m-manylinux1_x86_64.whl#md5=c53c78818bd7c3d7aa0164c468323158 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/1a/d0/1fdfd7b6d2ede6fdd9f4b91db0f939699e5da4b78ad1efc26003adfffcc0/scipy-1.0.0b1-cp36-cp36m-manylinux1_x86_64.whl#md5=1a67892eeb84079113687c05434ff257 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/1b/8a/81d22c337170eee748db88601f3130c53b5d1d6ccf46a02f613755e3e1ae/scipy-0.13.1-cp27-cp27mu-manylinux1_x86_64.whl#md5=ea15b0d3aa476f941fbcaf3ff0027817 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/1b/d2/f5921d8a32c5e3fe94a98f5f3482fdf4a18422b20189a3bcf7a08b38338d/scipy-0.12.1-cp33-cp33m-manylinux1_x86_64.whl#md5=f00a230088979b49f942e4207de4db5d (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/1c/29/78db0e6a09421c5cf6582cbce71cbdebd3eb109703451a63eaf954c10757/scipy-0.18.0rc2-cp34-cp34m-manylinux1_x86_64.whl#md5=c186a0ff0d4e949571436e40f4fdd900 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/1d/4e/26f041c6b5ad746b9ea79be9051b56a1c235715bc048b8c315f62ef1c142/scipy-1.0.0rc2-cp34-cp34m-manylinux1_x86_64.whl#md5=7ae00e623a6fef45659fcb88b5bbaa4f (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Found link https://pypi.python.org/packages/1d/b2/8c9536ac96c5f650e939471adea4b53ac0f98e6742745344a4d7ebd3950c/scipy-0.13.2.zip#md5=9befa30e546fba762a0c1695a509f731 (from https://pypi.python.org/simple/scipy/), version: 0.13.2
    Skipping link https://pypi.python.org/packages/1f/fa/8ffc385c865beebb0d34b7e685fc1cfd8632e3e2870e21b87397d057f58c/scipy-0.16.0-cp26-cp26mu-manylinux1_x86_64.whl#md5=ce3596b14d36bb92180f90a290e3afd6 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/20/97/0d5d86f38bba887a3b2b40c69977c334ecfff2c475d1e29491047c90538a/scipy-0.19.0-cp35-cp35m-manylinux1_x86_64.whl#md5=60741a900a145eb924ec861ec2743582 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/21/80/dcd6ee98d40d2a325b62d3ec0806e0d937ed7ad7a545983736f199db307f/scipy-1.0.0rc1-cp34-none-win_amd64.whl#md5=70c3c34c4a7e89e39aa268d042a9c485 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Found link https://pypi.python.org/packages/22/41/b1538a75309ae4913cdbbdc8d1cc54cae6d37981d2759532c1aa37a41121/scipy-0.18.1.tar.gz#md5=5fb5fb7ccb113ab3a039702b6c2f3327 (from https://pypi.python.org/simple/scipy/), version: 0.18.1
    Found link https://pypi.python.org/packages/23/fc/182b0c0a3642200c8bfd09a959d7bec3f36127df4b28b509f93922c62f0f/scipy-0.11.0.tar.gz#md5=842c81d35fd63579c41a8ca21a2419b9 (from https://pypi.python.org/simple/scipy/), version: 0.11.0
    Skipping link https://pypi.python.org/packages/23/fc/57fb7cd7d8869b6457faeaf329c47c3630ba0d0875d4b40b79d1602d23fa/scipy-0.19.1-cp34-cp34m-manylinux1_i686.whl#md5=9c02cdd79e4ffadddcce7b2212039816 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/25/46/35893bdb79e9c5d3ee511e8cde67f54b4474aa32aa21aac426cb34ee8a14/scipy-0.18.0rc2-cp35-cp35m-manylinux1_i686.whl#md5=19b3ad306dda97bb03da2d90bc26b223 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/26/12/83194214fe5cc9b4d0cecb5ce9fcbbcb943c7de69fd27887f93394324bae/scipy-1.0.0rc2-cp34-none-win_amd64.whl#md5=99748a48485b187984f7e68c4c32265e (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/26/6b/c077047dd84280a5b5a57d1f312225d057f88d288f734cb8d1c21a12069b/scipy-0.11.0-cp26-cp26mu-manylinux1_x86_64.whl#md5=d001dc5c5843160c92b5c2cac275c181 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/26/cf/52c326bbecc804e038e80c633255d57123aaa88a3777f404eeb55633dd5a/scipy-0.18.1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=ea91cccab7b404e2b65a077bc6919eac (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/26/f3/c52853896633f919f07f0c0b5907f1ec1fb71fd67549f5eced8da07decf8/scipy-1.0.0b1-cp36-none-win32.whl#md5=e1c28df57bc69ef76b3b893efecba5a8 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/2b/36/3876b40c75a8d374f80925f9f9f246893d4a1d99f1aada281e14f9e2901f/scipy-0.18.0-cp34-cp34m-manylinux1_x86_64.whl#md5=d8b88298b048884225708494bc51f249 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/2b/41/1ad811404383231ac90daa66add360d71a9faf19d8be05fb5fb1c975cbf7/scipy-0.14.1rc1.dev_52fb336-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=77ed947568d9d7b42f71ca84dce6b590 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/2c/4b/a1a7c1a0a0ad45035d335e4324d0b7c1444e447abdba6af67ff3e468f7ca/scipy-1.0.0rc1-cp36-none-win32.whl#md5=8a645a798b822a49e7fcd65755ca1c62 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/2d/e6/c5a88e2a9d92389cc358ece1602c1512ac0c03fba4ab99939e8fab8fabba/scipy-0.13.3-cp27-cp27mu-manylinux1_x86_64.whl#md5=27aaae1bd5112533da19e98bef5b74f3 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/2f/11/fa97aa5ff90b7b2f5988f64c2502a805bb6083f56b45fca27e93420f3574/scipy-0.19.1-cp27-cp27m-manylinux1_i686.whl#md5=e0022540df2735eb0475071b266d5d71 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/2f/12/565c08132db50a0ba34a33e0901f3d1d4d72e3b432ea828e4d87be5a4991/scipy-0.13.3.tar.gz#md5=0547c1f8e8afad4009cc9b5ef17a2d4d (from https://pypi.python.org/simple/scipy/), version: 0.13.3
    Skipping link https://pypi.python.org/packages/2f/91/40767d6fb5791c3f58238ffad6f968bd89875be2464808194118b679cc9b/scipy-0.14.1rc1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=ebdd363cfce65ceb62c456a8e6047ef7 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/2f/a7/743bc344a197ca0301601f3de895210bf78169f34583040cd83a086fae33/scipy-0.18.1-cp27-cp27mu-manylinux1_i686.whl#md5=7452b4b60be13fc3a1dc6766a0b43918 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/32/63/2805e719230e2ab67b219467bcab0498db444e8935cbebb58ca6cfad71f3/scipy-1.0.0b1-cp27-cp27m-manylinux1_x86_64.whl#md5=45287cf84980fc811f382a8163668cf3 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/32/64/e492c39084f802e35272e962487e9cc988efa8a8348aa8768920bd21a123/scipy-0.18.0-cp34-cp34m-manylinux1_i686.whl#md5=6e7bcd119bfcd3504f5d432424779fd2 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/33/16/1c51c0f42df070a4c8847152d124f0d1c877ab0af1c48e64281682c2cf06/scipy-1.0.0b1-cp34-none-win_amd64.whl#md5=f543fc450c8816f3e54633bb6981230b (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/34/53/88566a8d960e1f3ebea0af46b4570b6d96acd622bbc9f3e833ca74f905fa/scipy-0.17.0-cp27-cp27mu-manylinux1_x86_64.whl#md5=a5c0cf531a073dd3d2746856863bb4dd (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/34/ac/f793c8f18b6f188788b37aae02d94689ac8df317f09a681a3a61ecc466ab/scipy-0.13.0.tar.gz#md5=ffa1e9bfd2bbdf3f17f4cf8139084098 (from https://pypi.python.org/simple/scipy/), version: 0.13.0
    Skipping link https://pypi.python.org/packages/34/fb/561a9da3563aca589aef20c4bd95dc91b941171b7266a726fd7cda3afd1c/scipy-0.14.1-cp34-cp34m-manylinux1_x86_64.whl#md5=b2042be8047ec9d907a6f97422079efe (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/35/00/6b39b77ed32fe4613309116bca0e0daa28116dd3b42faaebbe7c62592c81/scipy-0.12.0-cp26-cp26mu-manylinux1_x86_64.whl#md5=b142edabdb73b4ebfb7fe7c44a44d6fe (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/35/3d/5ff0c7cae93b33191813a25c6b7c950ab5fc521fb30cd78332306e84e64d/scipy-0.14.1rc1.dev_52fb336-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=b7514dd98239f5ec98fe290947a62906 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/35/5c/88a2f023cbadf3d84520cc9c3bffa0da93480a08f28a4d07f2a5543c71a9/scipy-0.19.0-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=81685a961d6118459b7787e8465c8d36 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/35/7a/b0209d4b29b2b5572c05dd4fca7c5821f0b9e5130dccbab45fed7f41df40/scipy-0.12.0-cp34-cp34m-manylinux1_x86_64.whl#md5=80d185880088af1d98a46fbdf1ffed2c (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/35/9d/2f08555e1b07bca150767c1cce80e56c6a891505d87587638aa1e4d60c7b/scipy-0.12.0-cp27-cp27m-manylinux1_x86_64.whl#md5=241042d9df13799d1cccb81fd30f806e (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/36/42/1647ac88e5f4cddc6f1c30b6c6795c815ec7647482ad000513ed955c3976/scipy-1.0.0b1-cp35-none-win32.whl#md5=bdec9953eb8b8155d2d5d9502564b7a2 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/38/a9/abff072f949fe2b3a813cd2e46b042f136ccfe740c47c5207c3defa44730/scipy-0.14.1-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=6bdf3109da07d8d6caeb438777d312dc (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/39/49/49ef2530361dfd90c4597f54ad48e3ae72744e2193c7c479b0bb85ca5daf/scipy-0.16.1-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=2fe1f50ee6e49761d4b68c4a59d6ff72 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/39/55/1327ead5a00312976e2f7ee9486c31d38f336375a7bdba64dbd65022c818/scipy-0.13.1.zip#md5=485411032b02583b4eb63caec6f2a916 (from https://pypi.python.org/simple/scipy/), version: 0.13.1
    Skipping link https://pypi.python.org/packages/39/65/6142de2d8edfa96f4917203a1d8d5f5e1e160500a577a80eb4498800e225/scipy-0.12.1-cp34-cp34m-manylinux1_x86_64.whl#md5=bb7642c88a973a2bff14dc4a8ad4edce (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/3a/2b/02a9496828e319b0dbcf4f8d71be0b25908fec39f28271914541eb6edf8d/scipy-0.13.3-cp27-cp27m-manylinux1_x86_64.whl#md5=0b733ba4af26366baa9797a3880cefcb (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/3a/4f/f1b7401773e8a8c119400fe4f67b0c25ee5ce7b1d7672c8cdab2dd9a63f3/scipy-0.19.0-cp35-cp35m-manylinux1_i686.whl#md5=ff8e652b5e918b276793f1ce542a5959 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/3b/9a/9da7f347abcd83a40ffa737f910f148cadce2722c670a368fa438956ba0d/scipy-0.13.1-cp26-cp26mu-manylinux1_x86_64.whl#md5=fd3fa48e97b7ab1483b2568183c7515b (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/3c/4d/eddb2279f3c5bd37d10f0b518565359703c7e3bf46230c99c902c8bff8ac/scipy-1.0.0b1-cp35-cp35m-manylinux1_i686.whl#md5=b616a0e0d691fd7ef481f25f815a907f (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/3c/f2/2d0a8e08c5b54f9ef6957ea1d0daa132435826c0cad393fff54d10b15ff0/scipy-1.0.0rc2-cp27-cp27mu-manylinux1_x86_64.whl#md5=24e96a17c3e830be0de77ad53e9b1db3 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/3f/52/6fa39a8c03610e68be9e1c5c0b8dfe8fc4b0981a7789447aed79efc8dc2e/scipy-0.18.1-cp27-cp27m-manylinux1_i686.whl#md5=7a541112a84eb103a9e67087fdb103a6 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/3f/9a/09edc932e4f40ddc17293747892891690e68a27714ed09bcf21bb21a5ada/scipy-0.17.1-cp27-cp27m-manylinux1_i686.whl#md5=b4dc6450e003d028138452d342f8771c (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/3f/b6/a92d396a55266fc90995202d7baad3aab9eb0e832ac8e91a16cb69c372c4/scipy-0.14.0.zip#md5=7ee4fa9e756bab6b46b79f77c821cb68 (from https://pypi.python.org/simple/scipy/), version: 0.14.0
    Skipping link https://pypi.python.org/packages/40/45/3a3d2cd5389f5f392d555f443afed377807f9342c1ba749ad52c9a3b99d0/scipy-0.18.0rc2-cp35-cp35m-manylinux1_x86_64.whl#md5=3fe9e01f01b293499c5f4ff49b0249e1 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/40/ee/dbf4f8da26a04e68680138dc4feb80fd648d0ff34673e782a2d363d67cb5/scipy-0.13.0-cp27-cp27mu-manylinux1_x86_64.whl#md5=bcc4468cf94875011fbadc6fb6e6070c (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/40/fa/1c882b421b219bbbec71bd015c683cefb5d7971cd5e9f65fb84806d51680/scipy-0.17.1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=31b721cb87fa63ba2898e153fbd758de (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/41/34/4813c915d08efe8594a98db983b9d5ee627de2b76022e330d0b3b00538c5/scipy-1.0.0b1-cp27-none-win32.whl#md5=270222917d5c9a4a0f292845b5cff78e (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/44/56/5844713f63e070478816225a4cdee82cffc409bb11997beab4dbd57d5ac6/scipy-0.18.0-cp35-cp35m-manylinux1_x86_64.whl#md5=8f28a30aba8dd7fa4c1704088347684e (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/46/b6/81a0f305a81b48aa1338da1018ae022c6cff1c83f78fc7f831057db3d46a/scipy-0.16.0.tar.gz#md5=eb95dda0f36cc3096673993a350cde77 (from https://pypi.python.org/simple/scipy/), version: 0.16.0
    Skipping link https://pypi.python.org/packages/47/7c/2863bc6f599cfad79252e63638ae9aa3748850e4d51c21b481263212090f/scipy-0.13.3-cp33-cp33m-manylinux1_x86_64.whl#md5=aaede5ee9249a2ee0daab1b68a860fa0 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/47/cf/50f080f3512907c42c1e8966f958dad4e35eec6b64a055b8dd911f5aa611/scipy-0.12.0-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl#md5=8230187d0f2580bbdf78fa1b56b01087 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/48/9b/7bd7a2a73de1d22b61f21d5f88b02344044caa68f9e90f043a98300e2d50/scipy-0.14.1rc1.dev_205726a-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=27038263a15a4c125ded37f7f1dff9d3 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/49/0f/df9850f6311456ade84a0129783ce85ee517c979dbff69e3ebd1e877cb4d/scipy-0.10.0-cp26-cp26mu-manylinux1_x86_64.whl#md5=044af71389ac2ad3d3ece24d0baf4c07 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/4a/83/39b37e439f63f2ef95da9bdf61ac2a2cc04fd2fcb2f8a7a325cb10c60023/scipy-1.0.0rc2-cp36-none-win32.whl#md5=811e99858bdc8f11993953305a55a082 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Found link https://pypi.python.org/packages/4a/d5/4ef01e811dd6d166fdbef558a52725828f6b6ba253edac445d836ab88b1e/scipy-0.10.1.zip#md5=4156cc1b765eb186de9518a94b6c3518 (from https://pypi.python.org/simple/scipy/), version: 0.10.1
    Skipping link https://pypi.python.org/packages/4b/d3/56cbe9ed12650072ce0f9669ed99657840db15d756ce4084c82b50b92f25/scipy-0.16.1-cp35-cp35m-manylinux1_x86_64.whl#md5=a661d23cadb3be1bd7963c1a18c9d707 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/4b/e2/70cb6185de16b69b03afcf109ab9be7a1b3f35d02956981796815d70a52e/scipy-1.0.0b1-cp36-cp36m-manylinux1_i686.whl#md5=d053fbb433b2f28d219491f14e4d9a96 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/4b/f5/8c42023c11c915d4b2bb41a7fa6e817b8189347e962bb034a9d0b4b3c729/scipy-1.0.0rc2-cp35-none-win32.whl#md5=2e36fcb235db2fec93e1ee80ddcfcbab (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/4c/48/500ff55695eb5a90bdb2b48e856efaa434db51eb37f20ca1ca1b0e056927/scipy-1.0.0rc2-cp27-cp27m-manylinux1_x86_64.whl#md5=63a995aeab0d926a160a48918cae093d (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/4c/63/f497f844d8e98f61f93c9d2d389bae3212571d1ab9fe42cda315c66344c5/scipy-1.0.0rc1-cp36-cp36m-manylinux1_x86_64.whl#md5=5d1aed8bec7765e7e0028c926209f066 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/4d/4d/b2020db3ab453cf3f85dc0dedae7b4a753a6887f01a83eb8114599e3d20c/scipy-0.17.1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=ba7fead033820a678f6e1e927eb104a3 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/4d/ed/08313eb178d8710c2f29bdf4e1efac55f716a6bcd40852cf80bc5d3d117f/scipy-0.9.0.tar.gz#md5=ebfef6e8e82d15c875a4ee6a46d4e1cd (from https://pypi.python.org/simple/scipy/), version: 0.9.0
    Skipping link https://pypi.python.org/packages/4f/35/08aeb8c975cf4fd853bde8299df8478d6041dcd52c2ff5ba3e1eeb4c0549/scipy-0.18.0rc2-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=1c3bd0ae661317150cab85a38692a911 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/51/1c/d53b2c99f8dd94307ddc92772c7a696b045384c40e039240c24c3b2bae28/scipy-0.12.0.tar.gz#md5=8fb4da324649f655e8557ea92b998786 (from https://pypi.python.org/simple/scipy/), version: 0.12.0
    Found link https://pypi.python.org/packages/52/67/d9ef9b5058d4a9e3f0ae641ec151790622cbeb37f157de5773358e2bf3da/scipy-0.19.1.tar.gz#md5=6b4d91b62f1926282b127194a06b72b3 (from https://pypi.python.org/simple/scipy/), version: 0.19.1
    Skipping link https://pypi.python.org/packages/52/de/533588dcaa290fe66a0bc21b427eca10530cb9b3ebdf0adab705f24648bb/scipy-1.0.0b1-cp27-cp27mu-manylinux1_i686.whl#md5=e62401f0250caf67e8f37e998cf25041 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/56/c5/e0d36aaf719aa02ee3da19151045912e240d145586612e53b5eaa706e1db/scipy-0.15.1-cp34-cp34m-manylinux1_x86_64.whl#md5=d5243b0f9d85f4f4cb62514c82af93d4 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/57/57/582c653d7b26f2b7be2be8f287180e54f29ed5f8e41d9cb51074b2e00989/scipy-1.0.0b1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=a296a9ce26385af28fccc3013227ef00 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/57/68/8504a9554f5c6f8278d8d3a3b07f914d0c2ed1382ea3531efda92d819b53/scipy-1.0.0b1-cp27-none-win_amd64.whl#md5=5b87368b2d3248688cca18401a37a246 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/57/8a/f8f7316275478f1c43fb2f090e238c5636847472844c2d1a10d90cdf78ab/scipy-0.12.1-cp26-cp26mu-manylinux1_x86_64.whl#md5=e8cc7f05f2821132e305d3e6bdc42f99 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/57/c9/da06bc960279c0561e122439e781b45348811523aac3ccb643a4d1ed3839/scipy-0.13.3-cp34-cp34m-macosx_10_6_intel.whl#md5=0042a2e09d1632b47ed4fdb411cf9821 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/57/dc/a892e265f61b32a0852e6417e71020700d7b3cc6b66b2850f39e7c720146/scipy-0.14.1-cp33-cp33m-manylinux1_x86_64.whl#md5=561ff8f7df4e92466217045d5cd963d4 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/58/fd/84c98540c3baa307a23c1b68552c81da64b585d50c3a58aa6eb6f79f9375/scipy-1.0.0rc1-cp34-cp34m-manylinux1_x86_64.whl#md5=ffbfa4a1d4810ba335f4f246337dcc37 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/59/6c/f70014a506b25fde32580f9398c16d5b20d52ec3ae6fc16302df9e68b361/scipy-0.18.1-cp34-cp34m-manylinux1_x86_64.whl#md5=6fce0af205db550c29939d4fe8b6152d (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/59/8e/c9adb205eb4342e4210c263b525e8a25d32f8958faa7823e35f45f515397/scipy-0.10.0-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl#md5=310a518b189f32116da85e1762126b1a (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/5a/66/1ae35b5c0c83f6d1abbe5d215a9968c70cb188d50e09c01e01e0f38994fc/scipy-0.15.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=4b7fc70b09576ef91e3ff4b005816379 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/5b/bd/fb2f8e2060727fa73744463307370051ff3b8d9ced2109df74d4aa17c201/scipy-0.14.1-cp27-cp27mu-manylinux1_x86_64.whl#md5=f92e22cbdcd40084b805abf3289c9bce (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/5c/49/0f8a39d8a271810a4fc490159a4b5d33bcea86b055c875f781c29d4ed211/scipy-0.16.0-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=e4f22d7fd97ce305902e6251d3248466 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/5c/81/5a40e4abcbd0c303e002d1e1fa15fefadcc2bb1b8d28e49e12a01f5f1a5a/scipy-0.19.1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=fc2e4679e83590ff19c1a5c5b1aa4786 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/5c/86/cb2a73d13971b023befc40657ff8c38cc8c1dfa11c140921903f9bbfc4a7/scipy-0.10.1-cp27-cp27m-manylinux1_x86_64.whl#md5=5621c492b9759f2fde9dcba3352a5721 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/5e/35/3ecc16e083ed82a0a234a27a9d77d817c0abab0db43eb31a451bded3b49d/scipy-0.19.1-cp34-cp34m-manylinux1_x86_64.whl#md5=79c0ba3618466614744de9a2f5362bbc (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/5e/a3/d7241ac3921157e1f17569ad0591ed1966cacd3dc97c8abcf5807049e244/scipy-0.18.0.zip#md5=9ec1363dde2f2c16e833d3cd09f0dd13 (from https://pypi.python.org/simple/scipy/), version: 0.18.0
    Skipping link https://pypi.python.org/packages/5e/d8/34e59388803d46e830bf932ab86bd8ccdaf3ce81b1a28302b249948a5ed6/scipy-0.16.0-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=60e842bcf8b95affc19ef6f2a4bd5bb9 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/5e/ff/4477dd1cab2f54cce793de662d6546d4ccd4ca2f1795dab46ec983fa9082/scipy-0.18.0-cp27-cp27m-manylinux1_i686.whl#md5=f203cdea575c4e5d9c11f88480e609c4 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/5f/a8/e4bea8239e8c858bdd165f9496017ed5a83cddca1060de619141b2d0ff7b/scipy-1.0.0rc2-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=6ffb63649818a906d0a90c4ace71c18f (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/61/77/30c29264e19b0d18f2eb143462241f16aa5b9302e38a9225efa55677e78c/scipy-0.18.0rc2-cp27-cp27mu-manylinux1_x86_64.whl#md5=e544246013b716950b7b0d62b6495a1f (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/62/24/5ba8aeb4a3f49f5d34926ee19e02ac4dda1a7f4ff6ef96bd2597ddb0e11e/scipy-0.18.1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=8d631a14bdbc435a077dc5c0613c7630 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/63/3f/b69f4504e23400a6fa7c56c2b0a36d4cc40fd23341c9ffb2e1bc474309ff/scipy-0.13.0-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl#md5=d451fff29fd3d7aa501d6206bfed15f2 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/63/68/c5098f3b6034e69d187e3f2e989f462143d9f8b524f5a4f9e13c4a6f5f47/scipy-0.19.1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=72415e8da753eea97eb9820602931cb5 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/63/69/eb687ee0c5a746f7dfdd828c211e028a219e635aeaa3740692dd6ef43972/scipy-1.0.0rc1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=4a584162298de68ec77fa3d198408f2b (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/65/a0/4b3d716ed9299d68086ff8f68b64a0fa958ab0076a94be6b070e1fb7839f/scipy-0.15.1-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=dae3174d812f31696e6d8bca2d5a1b20 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/65/ab/86c8f34f336d5a28e5f0f1d53438de58a0177eedfc3890d889b6f5f53442/scipy-0.19.0-cp34-cp34m-manylinux1_x86_64.whl#md5=ed27be5380e0aaf0229adf747e760f8c (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/68/14/8b5f70e1ad66fbb9548a00e42cec56de84bec815912b8c9f53c179802fd9/scipy-0.16.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=66095f15bbb94db991cdb4cc66eac01b (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/68/e0/77615ca6a9a053d9d19f4abab0e27514161eba97da47ea601b73c237cd48/scipy-0.11.0.zip#md5=40b700ddde9ddab643b640fff7a9d753 (from https://pypi.python.org/simple/scipy/), version: 0.11.0
    Skipping link https://pypi.python.org/packages/6a/31/65ae90597cd31d20ee179a5351fafb4f698ceb335624b96468ae7dfc4b28/scipy-0.18.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=aec151bd64fee0651dc804f8b57a1948 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/6a/6f/1d142d230fa045710ff3a8521b7799f6c436df7ba2bb1852cbc86c0dbaad/scipy-1.0.0rc1-cp35-none-win32.whl#md5=6f17abebd83070e8567bfb1c54fac548 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/6e/e8/cfcfe2801887a819081cd72df1428eed591297adaa5f9c76631e7a8b1df7/scipy-0.16.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=32056047a528677ec93f879c24235bc3 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/6f/34/89d8a7d2f5d7c4e4ebd75f44adb4367b14abbd8dd28ab17bc798d4e38629/scipy-0.13.3-cp27-none-macosx_10_6_intel.whl#md5=4bc791c9f37645380cab2843e63d18db (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/70/8c/b002f4607a373b4fe1b9a0e8a1b8a04a911e180e9f5f6995dce098c65880/scipy-1.0.0b1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=5792391872cb6f543b671ab0f5a6a617 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/70/e9/e61b0855638d341dfea5a6cea7cfeb08d1e8b7fe7bb6060ec15fcb5815ec/scipy-0.19.1-cp35-cp35m-manylinux1_i686.whl#md5=d6c2ecadd4df36eb61870227fae42d3a (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/70/f7/5cf0b8ac375bf8c62f78cdf2e43f7d6f949b65c63d6c231bf7f5761d272e/scipy-0.13.2-cp27-cp27mu-manylinux1_x86_64.whl#md5=76472b79b20706b41c0d7ce8048a9b6a (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/72/41/44846a3c6f83b9d884f964d97b3cf4934078b65beecc741508d83613daa0/scipy-0.18.1-cp27-cp27m-manylinux1_x86_64.whl#md5=5b28b40b84a9123e0b54a13fa410e967 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/72/eb/d398b9f63ee936575edc62520477d6c2353ed013bacd656bd0c8bc1d0fa7/scipy-0.19.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=dde4d5d44a0274a5abb01be4a3cd486a (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/73/bb/47e899fe7c6d976e90f70f313fb2d1697ec981457c907d7abc951f0affa1/scipy-0.17.0-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=a77d71df0552df9944a93f930741eebf (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/74/18/2bd4719bcd359121a4ea56b833b1fc2cc2d3ddea8cb2699bbebae72bda18/scipy-0.19.1-cp27-cp27m-manylinux1_x86_64.whl#md5=f513eb4ea2086de169a502df7efb91c7 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/74/55/69a4e7d9c093b4b2bb6c60ad634a122f93bf420c83331df6f3a6fbfad248/scipy-0.14.0-cp27-cp27m-manylinux1_x86_64.whl#md5=239ecb6a4f3bf0b3154539e710453f6a (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/74/5a/2a7474768bffb3ee40544f91d4d9673e838bf3d6982bb05a1cf2487a8f7e/scipy-0.17.0-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=70887caa75faf193f502c9269d308a03 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/74/c0/f0bf4eaef1b6aa7bdd1ae5597ce1d9e729417b3ca085c47d0f1c640d34f8/scipy-0.18.1-cp36-cp36m-manylinux1_x86_64.whl#md5=3a2cfa79c7d3d8b1bc520e36f947a648 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/74/d2/dd67138a84d499025a8f6b412517fe4a73e9561b35fc09e9f8b9c59e3403/scipy-0.19.0-cp27-cp27m-manylinux1_i686.whl#md5=08809612b46e660e567e3272ec11c808 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/74/e8/14315e1ef08322a36cf756d165385ea0f25afd289d7e86eb2a7138640153/scipy-0.15.1.tar.gz#md5=be56cd8e60591d6332aac792a5880110 (from https://pypi.python.org/simple/scipy/), version: 0.15.1
    Skipping link https://pypi.python.org/packages/75/88/63dd10deab739027163b2f034faedd189da728d8010ad2aaef6d527c7286/scipy-0.19.1-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=602a741a54190e16698ff8b2fe9fd27c (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/75/a0/e65ec814f482bf58e1342e33a6b6c96d26b89ca1eb660ebeaadcd535fdd8/scipy-1.0.0rc1-cp27-none-win_amd64.whl#md5=d8860e57116d0b40b7a2835b8f0e802d (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Found link https://pypi.python.org/packages/76/3d/ad5f3d19d553cf4a01fb57dd95dc83d9493e3d289511881d4900e0f17ac0/scipy-0.14.0.tar.gz#md5=d7c7f4ccf8b07b08d6fe49d5cd51f85d (from https://pypi.python.org/simple/scipy/), version: 0.14.0
    Skipping link https://pypi.python.org/packages/76/91/f9d5c571e185509ed293259bd75abc688dc719217c8ef0bb99aea8596671/scipy-0.13.0-cp34-cp34m-manylinux1_x86_64.whl#md5=b6c91770daa84d136d802ee2216e2765 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/76/d1/c41cebf205a445722eb004364a971c3b6dff9ab88430a0adae808407e9ef/scipy-0.13.0.zip#md5=bd588ce8255e4d5427b5b19e9da2d4c7 (from https://pypi.python.org/simple/scipy/), version: 0.13.0
    Found link https://pypi.python.org/packages/7a/9b/8cddb261f5ca580c36f395c2fce8ad04a83fa0d10ce8fcaa18c318740e9c/scipy-1.0.0b1-cp36-none-win_amd64.whl#md5=d7b1ed22b9be7d0d9876b7472dee318e (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 1.0.0b1
    Skipping link https://pypi.python.org/packages/7a/d1/2eb817c4c467b3f5ee64a0cdadd0c8b6293b6408674506d726c1a57ea2a7/scipy-0.14.0-cp33-cp33m-manylinux1_x86_64.whl#md5=8354b87afa767e50d9a191daa1ff7ca0 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/7b/09/9813b0e9eedc989ff6ac8e544198f126e0801d79922725585579f82ab157/scipy-0.14.0-cp34-cp34m-manylinux1_x86_64.whl#md5=0fc011090a2976a5a9154d5ba182b765 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/7b/e1/ecc1820874c396a094e6df30d4d3aa8119d4987c5ff0b9caec73db362849/scipy-0.16.1.tar.gz#md5=967cdb8588a4249f820344d8264a2143 (from https://pypi.python.org/simple/scipy/), version: 0.16.1
    Skipping link https://pypi.python.org/packages/7d/d3/86fe2115341f9ba01f1e9af3063e7d431587016aabf1c3a5546f33d3db55/scipy-0.17.0-cp35-cp35m-manylinux1_x86_64.whl#md5=a6f43f8a10e9f4c128b11556fdbec0be (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/7e/95/df3dd7527db6fbf8f2dcce4cc0919bb1fb7fb0463739dddde49c225a87e5/scipy-0.17.0.zip#md5=28a4fe29e980804db162524f10873211 (from https://pypi.python.org/simple/scipy/), version: 0.17.0
    Skipping link https://pypi.python.org/packages/80/0d/0bbff4334ed630556756a773b5e7b378709f63f79be5ccc350b5fe2883fb/scipy-0.14.0-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl#md5=d3728a6d43c3265003db3781cbd4660f (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/81/8a/34b1644a7ae3658028895b0c49628f21c12f3f76231dd9356a4a07adf65d/scipy-1.0.0rc2-cp35-cp35m-manylinux1_i686.whl#md5=65db0eb9f859cd4133bf19175c035243 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Found link https://pypi.python.org/packages/82/0d/987404674724e5bbdd9341ab8bf1a7c52a4082d4ba1ab5ff81ee2ebe8456/scipy-0.8.0.tar.gz#md5=f0bfc6141b90e6a31555b31486602251 (from https://pypi.python.org/simple/scipy/), version: 0.8.0
    Found link https://pypi.python.org/packages/83/54/f1760dd82ebf52859a1a7153187f16abc2814327ad830b7f7d6808da890a/scipy-0.13.1.tar.gz#md5=e082fe358a2b39cff235e5af4240f5a5 (from https://pypi.python.org/simple/scipy/), version: 0.13.1
    Skipping link https://pypi.python.org/packages/83/7c/5ba1ca301c3b1ddd8d097778fea2ecc3c34f5c5fb9e95f562d55082aa5f1/scipy-0.13.1-cp27-cp27m-manylinux1_x86_64.whl#md5=f528f2c9dc2d55ccd9baf6e51ce4199d (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/83/94/689cbec699b0f1dd230ceb41acda1ac1b212c028c570c4ca932649330e85/scipy-0.16.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=173cc55ccbe96033b5cab3ad276158e4 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/83/be/b68316908d9693708bebb30f99484b1b13297929e8f5206b0bc1c0f8480c/scipy-1.0.0rc2-cp27-none-win32.whl#md5=b36155fd3b91eddcafb25f2426f394c2 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/84/a3/2447a921568866fbda5ec3397ad2b0fe8d0cb038801fd75828a1feabe4ff/scipy-0.10.1-cp26-cp26mu-manylinux1_x86_64.whl#md5=f7f63e5ea3960d92e30cf2eab102c32e (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/85/bf/9f4c4a3767034c346f7dabdc3c89f808b1e73446617d2612b34b0159c6c8/scipy-0.17.1-cp27-cp27m-manylinux1_x86_64.whl#md5=fd79ca7e76d47b6a7e1066eba06ed23f (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/86/1c/ecd14ac89d2d3ad8c06abb5cd406a33f6acd52f2f3656bd372b44ff43ddf/scipy-0.15.1.zip#md5=0bd8aa1133118abc77d0d69cc2777ef3 (from https://pypi.python.org/simple/scipy/), version: 0.15.1
    Found link https://pypi.python.org/packages/86/e6/abd42b57e41a3bb87c1e4f4b8455267e010c1b2a4c7ed18ccc4b9ac7fbbc/scipy-0.18.0rc2.tar.gz#md5=499c9ebb0d4f6f596ef26a771c37b03b (from https://pypi.python.org/simple/scipy/), version: 0.18.0rc2
    Skipping link https://pypi.python.org/packages/87/8f/88a1066f643d65c58fedd869aa480e6c743e715334b3584035d4fada2dc7/scipy-0.13.0-cp33-cp33m-manylinux1_x86_64.whl#md5=61e81cfb1d1e66d83c02866a31e655a7 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/88/55/7344997a3fec322a774e9d418db36a01ab6c1eb95a54e69babdfba07f1a2/scipy-0.19.0-cp27-cp27mu-manylinux1_i686.whl#md5=a2669158cf847856d292b8a60cdaa170 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/8a/10/4ca7abdd5d13f97ae6eeaaaa279b7bb38c120d6d239a0db60a9b4c1d3c32/scipy-0.11.0-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl#md5=b385333496b8b25a5782c2a7a35413d3 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/8a/27/dd4d84451f5aadee6a8b47addf9a38f60e4ad395254ddd0dbcb5e03df9ba/scipy-1.0.0rc2-cp36-cp36m-manylinux1_x86_64.whl#md5=ec5ad59e7bd1d084e7b28677e9f7c2e2 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/8a/2e/cd53468ce7d2d6f85f321265238d5f5cca846af448621042fc6b7ab31a21/scipy-0.18.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=bd831c36d4d844f9ffbbc76232827394 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/8a/de/326cf31a5a3ba0c01c40cdd78f7140b0510ed80e6d5ec5b2ec173c72df03/scipy-0.17.1-cp27-cp27mu-manylinux1_x86_64.whl#md5=8d0df61ceba78a2796f8d90fc979576f (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/8b/65/dfaa7510f51b3dd59cbf5c11717f7cd9fa4bd4f7812838672e77b2206f79/scipy-0.12.1-cp27-cp27mu-manylinux1_x86_64.whl#md5=d1b965456eb1241e3a0f0790462531d7 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/8c/a0/bcb7480b0b9a38f4f6026c9cf4168fd2d648227af1429e5fa174f3316525/scipy-0.16.0.zip#md5=1764bd452a72698b968ad13e51e28053 (from https://pypi.python.org/simple/scipy/), version: 0.16.0
    Skipping link https://pypi.python.org/packages/8d/29/d83204aa1f67796049f8b0b91cd177b3ab9049828c41dc886891c5cb9c8f/scipy-1.0.0rc2-cp27-cp27m-manylinux1_i686.whl#md5=d6e56bad4566461da8a6cbf462937275 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/8e/43/a7b400e7ea07220fb419f0669ff17f5ef71653cf32827315224bc9dda9d4/scipy-0.19.1-cp27-cp27mu-manylinux1_x86_64.whl#md5=afbf8ffb4a4fe7c18e34cb8a313c18ee (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/90/2a/07487db495c7d283e6825435bcf99e48b25e3142a5457adf89f208305e24/scipy-1.0.0rc1-cp35-cp35m-manylinux1_i686.whl#md5=44a93e24918c182df9360f76e0cc8736 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/90/66/a610cdf6201374d3dd012f74bed6cdfbfac0229b5a91a0121a345f812bdc/scipy-0.17.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=8e2adbbe5d83f773d6a1d915c46eb62f (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/90/d7/8e5fe7e9ff599ac19d24d842c2791da49710e17c081b6a8f4f93f9f98977/scipy-0.13.2-cp27-cp27m-manylinux1_x86_64.whl#md5=e05ced3da45a3d7b657a102f6ebe79f6 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/91/f3/0052c245d53eb5f0e13b7215811e52af3791a8a7d31771605697c28466a0/scipy-0.17.1-cp35-cp35m-manylinux1_x86_64.whl#md5=8e77756904c81a6f79ed10e3abf0c544 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/91/f7/6549a9e1a6a8a95a20ac93fe9881f7b2c67314a9b51cb11c959a51083c3c/scipy-0.10.0.zip#md5=d1a4242266739433dcfe2096b0ab4007 (from https://pypi.python.org/simple/scipy/), version: 0.10.0
    Skipping link https://pypi.python.org/packages/95/25/f330f3b1b929a56dfd2a2213bf917a81e26a031ac0cc8f30e986a4a88bab/scipy-0.12.1-cp27-cp27m-manylinux1_x86_64.whl#md5=b7ef2ebddaf37dfb83a300e5b312152b (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/95/f2/bc68dec48da53b9152d9a260e2be81d67318ea44ad2d1fd1cdb9278e1d03/scipy-0.18.0rc2-cp27-cp27mu-manylinux1_i686.whl#md5=bcc737e766e11f3e83337fb473c9fb8f (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/96/e9/dc57da726dad825548b472dcaa9343486fd2ee514ac714272e38d7c6c9e1/scipy-0.15.0.tar.gz#md5=639112f077f0aeb6d80718dc5019dc7a (from https://pypi.python.org/simple/scipy/), version: 0.15.0
    Skipping link https://pypi.python.org/packages/97/4a/d1653a32faf91307d83093d4952bcb0211fa5025531508a8fceb477a3e97/scipy-0.18.0rc2-cp27-cp27m-manylinux1_i686.whl#md5=4c1246ae2a8a87d588cdef226350dd2e (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/97/5f/18714e4ae759fd5fef643c8f578fbef1a513f5302681a3b20f80f09700c9/scipy-0.18.1-cp36-cp36m-manylinux1_i686.whl#md5=8a5ccf374b122647601ae02350c6c115 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/97/f3/591afcea48ec2c97197880d6a1aa89f3b2953a2a704ea12f93f2a753d260/scipy-1.0.0b1-cp27-cp27mu-manylinux1_x86_64.whl#md5=aa42a9415f26e9fffa916317b236227f (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/98/3c/73a4941c600b3b6371522e487ee5ff534b395a05fff92631b53b792271e3/scipy-0.10.0-cp27-cp27mu-manylinux1_x86_64.whl#md5=8588ec6c4c2b32d513dc40f450cca9d9 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/98/ee/11f60a8c8ffd38566f567fa863dbab9c252443915ea1f4dfd3b2a0734467/scipy-0.13.2-cp26-cp26mu-manylinux1_x86_64.whl#md5=eaa99a3e063996229179d5a3f19b34da (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/99/89/a2d8e873897c8ec5d20d1ae3ef6d54825dbdf13e3e7e3bf279f516aaf371/scipy-0.15.1-cp26-cp26mu-manylinux1_x86_64.whl#md5=cb722e97e92dc6a10c581d89198bc2cf (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/99/a0/2f889809aa0d3d665a4f41506e50cd7e34a52ae8ec9c6b557e04fc640903/scipy-0.18.0rc2-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=686493b410d4a00d05e30a77994320a4 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/9a/01/e497d137fa5cccab3274d15ff15ae7230203b8bacb02e0316b08fd548d6f/scipy-0.16.0-cp27-cp27m-manylinux1_x86_64.whl#md5=157f0742d192e968b558056a820e5b59 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/9b/4a/eaf906fab762e85590678ffc1e220b4c697325cf5eac0c2e9d79a026afbd/scipy-0.19.1-cp36-cp36m-manylinux1_i686.whl#md5=458615e9a56429a72038531dd5dcb3cb (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/9c/85/d8fd3c75ee4b216c0283efde113b42c8d6cf7e2d3bdd04928f5f0fcf4fc6/scipy-0.17.1.zip#md5=cdcf93e240e2b0e4007b86cb78eda438 (from https://pypi.python.org/simple/scipy/), version: 0.17.1
    Skipping link https://pypi.python.org/packages/9c/a9/acc951901d95f5d0d954f0f226d3ba66f00acd39e8aa7bfe0728b2ac4687/scipy-0.16.1-cp34-cp34m-manylinux1_x86_64.whl#md5=fb001653cc806165a6ada759d9e76552 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/9c/db/42a2363b6f5efca713e310d4c469d04140dff266b022e1a49aee3b58f62f/scipy-0.12.1.tar.gz#md5=906278290152fedfe79029371ca584a5 (from https://pypi.python.org/simple/scipy/), version: 0.12.1
    Skipping link https://pypi.python.org/packages/9e/12/a15e8acb2a6684567545169f361f381d129573ee55bffd8944cae31c696d/scipy-0.15.0-cp33-cp33m-manylinux1_x86_64.whl#md5=e0078c66efcf3cc1ad033305c435c367 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/9e/a2/bf25eced70320b0a6c16c86c057906f93deb966fc95db823ba5fbe1868c9/scipy-0.14.1rc1-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=bbe1317ca465c1246a71a86a5c380f0f (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/9e/bf/e9ebe6ed006f825ede61b991999ac4b4379502932e11817a7f9ff6e91ca7/scipy-0.11.0-cp27-cp27mu-manylinux1_x86_64.whl#md5=518ee6f05e48b81537df9761e0cc1c19 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/a0/72/b83b646ed7a0c3d207140d7eca7385d97c1de01273e575f24dd936e0bde0/scipy-0.11.0-cp27-cp27m-manylinux1_x86_64.whl#md5=0525be656e2a20dc40fb5b9ae9f892e4 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/a0/db/f92d782bd74ec7f9f30fef6143856740b4a93bfbeb715f3e923c0b83dcb9/scipy-0.10.0.tar.gz#md5=e357c08425fd031dce63bc4905789088 (from https://pypi.python.org/simple/scipy/), version: 0.10.0
    Skipping link https://pypi.python.org/packages/a2/6b/814afdf98fed9defaec70052e29a7d10eb992bcabb01098677e361846a7a/scipy-0.19.1-cp27-cp27mu-manylinux1_i686.whl#md5=906c3c59209d6249b5d8ce14cfa01382 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/a2/9b/8f4ce493658e62926bef162ed3a578fb275356864792720a762e8826e1e6/scipy-1.0.0rc2-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=d30c77ddfe3f03d1c4c4fb0aae08fa89 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/a3/32/55ccba68da8c0067af759efde2a6be6bd4d4d38628d1ca72ffc2d96f9fa4/scipy-0.14.1rc1-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=1e6c155aa0bf5a248d3e46cf1d0ff44a (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/a4/3a/625081f4430fc096c2bdfe11036618cc0f80ba9c680823c764efb760dc7a/scipy-0.17.1-cp27-cp27mu-manylinux1_i686.whl#md5=a9fde28576dfe270894eb73dd5e8dc5a (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/a4/3b/b89ac83e69bde5903ff738ac351104db30adb492a96bab19c9d8bfc27c8f/scipy-1.0.0rc1-cp34-cp34m-manylinux1_i686.whl#md5=96068cbeab533ff8a326ef4c45d7f1ad (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/a6/e0/8ad8816c1a02ac47a6c13de4f2e70c2eddfe650a678263f8d891b4caea7a/scipy-0.15.0-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=7c431a473ac65fd7cab4859c3743088b (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/a7/3f/2e92b9dcd8371ee64837551549b407f46272b7169ddca2145fe23101d5ed/scipy-0.13.0-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl#md5=0b3c405ba421f43cf97837c5aa172515 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/a7/5b/f21176a539db6a323605a6beb2ae504e3e85fdd7f26944fe2f23f1f89e5c/scipy-1.0.0rc1-cp27-cp27m-manylinux1_i686.whl#md5=c42bd74c63e3c426f62bbe38890dcfe5 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/a7/a5/447e56abc3854a343c2f01c8fb274570057bc2550b71bd5134a264d4251e/scipy-0.19.1-cp35-cp35m-manylinux1_x86_64.whl#md5=e7167c0a9cf270f89437e2fd09731636 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/aa/2c/c43e3d124c61d0290e3ea782dd3f0a24e4dc51f5dfafeb54955fde8b82ba/scipy-1.0.0rc1-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=cef61b478f4c887495f2b190dae5d8f2 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/ab/6d/548d3643422fba98fbb513550974389115c9d55d13cd55deb3bcbdf39af7/scipy-0.14.0-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=f2b504a8e3d5ee0ae33d7052a994a029 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/ab/e6/071f5edebb243a7388eb4fe65608fdec7c4288bb59b91292cb149be2ebaf/scipy-0.15.1-cp27-cp27m-manylinux1_x86_64.whl#md5=171d36970b7d36b2285941b8bf3a2727 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/ac/55/6cc9fc18f3c2365c3e87e5c13d366366435b7ba0881ef03f223a596cfc9a/scipy-0.15.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=d0aaf2da89af160060f1759947457ad6 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/ac/b2/8b8c8e0721b71b69dbab7c5c82b9132afd301f070e80b4fbfb05e0fe44c6/scipy-1.0.0rc1-cp27-cp27m-manylinux1_x86_64.whl#md5=b7c312d242a9932e8abc25347605157d (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Found link https://pypi.python.org/packages/ac/df/d8b62db24aa12c4aa03d2f7a7cb228d1492f33e9cc58d2ca24693403736e/scipy-0.9.0.zip#md5=a37933c9e3c4fdf8d087624cd7dcb47d (from https://pypi.python.org/simple/scipy/), version: 0.9.0
    Skipping link https://pypi.python.org/packages/ae/94/28ca6f9311e2351bb68da41ff8c1bc8f82bb82791f2ecd34efa953e60576/scipy-0.19.0-cp27-cp27m-manylinux1_x86_64.whl#md5=0e49f7fc8d31c1c79f0a4d63b29e8a1f (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/af/30/8165621a7ae248e6c1e2f267b37d3b0d33752cc15d1cc58f12e542f64442/scipy-0.14.1rc1.dev_205726a-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=755003a1d318c5b7e47c3e3b930f955d (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/b0/bf/3196bb46c8fccee9b2c6964d5de1d1ac2414262b8aef8c5bea4514d9587a/scipy-0.18.1-cp35-cp35m-manylinux1_i686.whl#md5=9e371961e6fe186c1628c32922c2b7ee (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/b1/05/20f4145a5a308a25d822728ba4c3151427ce7de803ffab66ea50c2206e55/scipy-0.18.0rc2-cp34-cp34m-manylinux1_i686.whl#md5=92ca9d1e4f119d1a815aaead051b72c3 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/b1/29/cba8a67487b4ff72645a9a08a047cbba766fa2050095973957c08437b09b/scipy-0.14.0-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=f56df58dd416119a23d1c58316da5c26 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/b1/30/000051a06363f2f00e1d760286df7d1f2da2e3a44df13ac719414e596599/scipy-0.13.1-cp33-cp33m-manylinux1_x86_64.whl#md5=767ded284e3d76f2deb19e392e2ea3ee (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/b3/46/3aecb4feaa2ef3c4071a9a853a35a2695f7677ebc7731c3cb3d291c6d188/scipy-0.18.0-cp27-cp27m-manylinux1_x86_64.whl#md5=ccca6aeb87717ca383a15e1d3cd3b3e9 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/b4/be/067918d7b77debe1c13b59894ff45fc03e44d83b283e99ec98f1d5211600/scipy-1.0.0b1-cp34-none-win32.whl#md5=e99fc08ee2595f0367aeba4ad0cda8ad (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Found link https://pypi.python.org/packages/b7/8b/66ea869c3a3b6216ff166a45c331c1c6d4a7b79e3db7c8cda5a9f91f09dc/scipy-0.15.0.zip#md5=09641b11ac17f1c141979c60a3f60895 (from https://pypi.python.org/simple/scipy/), version: 0.15.0
    Found link https://pypi.python.org/packages/b8/9d/b8db3d123536c2ac34a37571d319ebccfdd2816fef61cb7b470be5ad8cea/scipy-1.0.0b1.tar.gz#md5=aa5d612f5f9c97434033d02dc0be155f (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 1.0.0b1
    Skipping link https://pypi.python.org/packages/b9/69/ba0cfae779b80b35d1e70a5e942cf17e57fa9dac6e0369672422e60e71fc/scipy-0.12.0-cp33-cp33m-manylinux1_x86_64.whl#md5=0abc5dfc65c0e1009a951345522e33fa (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/b9/e3/3d97e84e7c6ba21c937a1d3222c846a4cb8aee3d4dae5166c2b6bb4e88a1/scipy-0.13.0-cp26-cp26mu-manylinux1_x86_64.whl#md5=3c75d204b5372372272f08ad9797813d (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/ba/8a/c3f53e4afd4bc296b86fc90e2bd5c73673442763fcfa0155b1f70ce2b5f9/scipy-0.19.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=d568c9f60683c33b81ebc1c39eea198a (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/bc/a8/6d787f6014b0d2779c632c244d8351d89919a8d1412575bd4d975e0443e7/scipy-0.15.0-cp26-cp26mu-manylinux1_x86_64.whl#md5=2671a18cdee0149f27d357c8e0035ac5 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/bd/26/f4def3dc832d5b6dd895bbccab9ffd85299578372255122b90b1466aa829/scipy-1.0.0b1-cp34-cp34m-manylinux1_i686.whl#md5=411484a4ceebf028abafab541be040b4 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/bd/8f/0e0fb2b991290727de18b9623c7c32217d0d5d67f436cfd79fa7a0487db5/scipy-0.18.0-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=3886c82aa705b44662964d5d1de179b8 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/bd/fb/79fa65e6a583d0cce42dd2c8ba104db440e6f25ca706588d97e81d4c9d5e/scipy-0.19.0-cp34-cp34m-manylinux1_i686.whl#md5=a90148fec477c1950578b40a1197509f (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/be/31/40391528eb94e7686d1075a28fb80e45962cc0eaa6843d1a5c8677dab3af/scipy-0.19.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=5ba945b3404644244ab469883a1723f0 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/be/31/6cd7cbbf882483fe89df9763626a7120a15b52a8c63eac049fc3cbca9911/scipy-0.14.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=f5cf7e6eec6f7d41c6e46f32834d675d (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/be/5c/670e88bc3ae6afa23c1f09d52a77bbbc7d2e476e7449ad3b6750040a0ac6/scipy-1.0.0b1-cp35-none-win_amd64.whl#md5=dcc90577f2eebc264ec60a2d5729e30b (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/bf/f2/1dc85bfbbbf96faf2340a807285cf3f742eb0037fe2558b5ea3572fa76b6/scipy-0.19.0-cp36-cp36m-manylinux1_i686.whl#md5=83f0750862c80a659686797d4ec9bca0 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/c0/27/de0e8f452c66eefccb76a029aa8072c6c6f5cc94a52632a6ffed8bcd8f4c/scipy-0.15.0-cp27-cp27mu-manylinux1_x86_64.whl#md5=c92f3760a6735754c6d9bc379cbe4b67 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/c1/69/f8cd2bb643bda807b5555a3c607835569e7203f165178631a7e593392ee3/scipy-0.18.0-cp27-cp27mu-manylinux1_i686.whl#md5=3426dd5731fcdb9f56ee30623def9ac0 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/c3/69/edd2a7216653f3ce817c90175e40b8c79d550a9117b2e4582f61aac2ebac/scipy-1.0.0b1-cp35-cp35m-manylinux1_x86_64.whl#md5=14a09675e158fa438565ac51bed5ebfd (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/c5/26/27b835eaee43982b065ee3fe5fa8ad9c412972bb0becab9fd0ae39932531/scipy-0.14.1rc1.dev_205726a-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=25c79e26aef2696a651c611b113c4965 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/c7/ce/993b23695a83da2ecd58b083e95ccc162257b24f273299d4d88b6eac5507/scipy-0.14.1.zip#md5=4bfc35d3683e0ef397157f84040df5b0 (from https://pypi.python.org/simple/scipy/), version: 0.14.1
    Skipping link https://pypi.python.org/packages/c8/59/e3745842c71d31c3d2be3aead63b946a09da621aef88fc6182cb210294d1/scipy-0.13.3-cp33-cp33m-macosx_10_6_intel.whl#md5=ca634955b1757fe5e22c6a8a035bb328 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/c8/83/ba2b94face9f4b0bcb5329ea870b1213382e32de2a938929702083c09440/scipy-1.0.0rc1-cp27-none-win32.whl#md5=558a227959ff81e272d6892ca6c2138a (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/cb/9d/f6dcd4b43160f4798e52ff75c489a74a6363aa9ee71eaedc6f915238ec0d/scipy-0.16.1-cp27-cp27m-manylinux1_x86_64.whl#md5=eec1c5913a17e1f60988ba5a3c0bbd72 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/cb/da/b758668af3d1436f5810b04bc54b7d86b061130fa55e1e9c21a839096a64/scipy-0.16.1-cp33-cp33m-manylinux1_x86_64.whl#md5=e4c94aeff45c4f8225b1031506af765d (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/cc/89/1251c61ad82d6dbeae16a7eb1093e23ef42be7d83781bedd429804c72b44/scipy-1.0.0b1-cp27-cp27m-manylinux1_i686.whl#md5=e961f8561b79909ddc2a88377c0e67f5 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/ce/43/ada3ac7261cc2625683361fd7e5c0d1637b50076c518519088c3d857d005/scipy-0.18.0-cp35-cp35m-manylinux1_i686.whl#md5=1bdc3664de8456bbc45620afbfc3d2cf (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/ce/7b/e9be5b3893d50f5a305eb5a97b432c8a95f7ca025abf3bc42c8a1ef2f439/scipy-1.0.0b1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=0bf3331afc904170318a0ce7195f0185 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/cf/d8/2fcdc72c0e5e893c35f19e6fe784942abaa119b2374abbcb52420e755d3f/scipy-0.10.1-cp27-cp27mu-manylinux1_x86_64.whl#md5=1c0540c0273ba3eb68a8d51b8b122537 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/d0/7b/415fd5bb215f28b423d32dc98126f700ebe7f1efa53e65377ed6ed55df99/scipy-0.19.0-cp36-cp36m-manylinux1_x86_64.whl#md5=3cbb30615496fbbf9b52c9a643c6fe5e (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/d2/02/66a85584ea9c5b0a21d23e9b1f4d01c9d2e216e5570b07eeb95248271b7b/scipy-1.0.0rc2-cp27-cp27mu-manylinux1_i686.whl#md5=0a5b83e063396638ee0760d59f6c3d62 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/d2/4b/d58ddeb42d3b9374d86afc216f8841fc15503fa3ee9a56aa9f69f7409251/scipy-0.14.1-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=423c77aa343f76c30788166400696f68 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/d2/cd/c609a2e5c8ee74f3488692281daa0e6c9424f508ba33b1555ef738840c53/scipy-1.0.0b1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=320ff626ebe508c0d0c2705d6ced9dcb (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/d4/23/d8d12a7b23ffe7915ed23ac3aa85347edab9fca97e4c8c5d7f18b9cdd5b1/scipy-0.18.0-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=e9ddb97336421e110a3f20e1b1f6c057 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/d5/00/5eeed7c67fa5ca80dad12c399bb31450733f0a874a2c8c4d9a8e8ab281c0/scipy-0.13.3.zip#md5=20ff3a867cc5925ef1d654aed2ff7e88 (from https://pypi.python.org/simple/scipy/), version: 0.13.3
    Skipping link https://pypi.python.org/packages/d6/2c/c97267e4f22e48ad110161b5346a7673a38841de76904f343e739a837c93/scipy-0.13.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl#md5=dcd20dad203d301f0b5ec7aa0bb49aa3 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/da/85/0889544b47bcd30ae1341c0bb6e20720afb890134332cdc34071ab9b6800/scipy-0.14.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=1c9eca63055d0e64b9b9d241ec5f9c0f (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/db/2a/ed1610d92381c0cdb87890a319aee06a595617a10baa594bcf209824285a/scipy-1.0.0rc1-cp27-cp27mu-manylinux1_x86_64.whl#md5=613a865a0d7fa5191e4aab9c38652e8c (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/db/c4/6e2a7f46c9486c6185c60ab0718e7a1b42a971a96b063c6b6e247b7a01fa/scipy-0.15.0-cp34-cp34m-manylinux1_x86_64.whl#md5=a0aef54316cdf75e5fc40f2e7b9a938d (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/dc/10/b1913a45cad149ef5950074d8b628935773ff70c36854ba09962243ee88a/scipy-1.0.0rc1-cp36-cp36m-manylinux1_i686.whl#md5=1304e0c539d1384127d2811a66333d35 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/dc/16/9560208cb7b34c67f1f0260bbade755869586bccc88c92011e3c12d3fa47/scipy-0.18.1-cp34-cp34m-manylinux1_i686.whl#md5=9e3fabf0f49497ddb65b814cf9415edc (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/dd/83/7983d1233649f83f3674c1364e5cd43bd6dea9f1bb081d3b0a5bf1761c70/scipy-1.0.0rc2-cp35-none-win_amd64.whl#md5=7775f8a917da5f1e97a77c66089bbda4 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/dd/f0/222bb29fae425bd482cad6d5f284e63a752ddb28039003d0de310a8773f6/scipy-0.14.1-cp27-cp27m-manylinux1_x86_64.whl#md5=81ad6eba89aac213f4fbf5e204a7edc8 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/df/c4/ba1327f80b5663943e0cfa80c640ea3372fd2b65e42cc5159726fe02cf0a/scipy-0.13.0-cp27-cp27m-manylinux1_x86_64.whl#md5=6c3778a88852edca05a164345193120f (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/e0/6b/82f474751b0606436b8e95b69dbd6a6c15b55420c8a1f7aad6408018c8b0/scipy-0.13.2.tar.gz#md5=fcd110802b0bf3505ba567cf831566e1 (from https://pypi.python.org/simple/scipy/), version: 0.13.2
    Skipping link https://pypi.python.org/packages/e1/9a/c0f5e7f0e73de51fd93682f4a43a79383b2ff3585d7b25170da5d9034ea1/scipy-0.16.0-cp27-cp27mu-manylinux1_x86_64.whl#md5=53725579d80f7118cfb79dab0a2edd90 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/e2/51/5ce532e6edc6770472e72edf9299d8bca7f31576bc45b33e93e250573ab2/scipy-0.14.0-cp26-cp26mu-manylinux1_x86_64.whl#md5=699f733b2850b3793cf4517cceba368a (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/e2/85/d55d81e35c6adab4ab918c4563e6be7b37b5f55e521f7df84181089d87ce/scipy-1.0.0rc2.tar.gz#md5=9e1036143c4f8ded108c791bfa529f3d (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 1.0.0rc2
    Skipping link https://pypi.python.org/packages/e2/a9/21f537f6561ae56e063f1b704620ff2e1c88fc55f82d9265f9c5e73f7eb9/scipy-0.16.0-cp33-cp33m-manylinux1_x86_64.whl#md5=94b63402dfe4685ccc71436c3e7ab083 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/e2/d8/cafe07f71d6acd838a53aa874242190f6b690ccde4b0bcb94df717e347fc/scipy-0.14.1-cp26-cp26mu-manylinux1_x86_64.whl#md5=18790f7d021dbf05bea0e3eccf144f5d (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/e4/81/df8b2598e99fe1651d70a80760732c95472d8cc3204d0750b8cb47e54525/scipy-0.9.0-cp27-cp27m-manylinux1_x86_64.whl#md5=77d0ff60d18961256f6a754e27cd435a (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/e5/93/9a8290e7eb5d4f7cb53b9a7ad7b92b9827ecceaddfd04c2a83f195d8767d/scipy-0.19.0.zip#md5=91b8396231eec780222a57703d3ec550 (from https://pypi.python.org/simple/scipy/), version: 0.19.0
    Skipping link https://pypi.python.org/packages/e5/a5/504bb317d437fad1b5343c6e0068516f2a7adc20cd4977202f1f84a2e7cf/scipy-0.17.0-cp27-cp27m-manylinux1_x86_64.whl#md5=c0c2f7d5dc4c509eb21c0ad04689a46d (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/e5/f5/bbfa7b7c8d9d0bfb8bd45fa7a7f8a62be9f5af74bf9f3fec402bcfa99501/scipy-0.15.1-cp33-cp33m-manylinux1_x86_64.whl#md5=66367d0bb7f5773a5e42e5b83666b8ac (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/e7/3a/30f964ccbc015cdb6650b45f7c63f045b171385ef232b3b2ed6de4d4dc92/scipy-1.0.0rc2-cp34-none-win32.whl#md5=9bb443307be81690916d9b5c52b88940 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/e7/c7/9eecef11ac159979d043800face03757ca64e9e1c8985bf6d1db5d424cc6/scipy-0.13.3-cp26-cp26mu-manylinux1_x86_64.whl#md5=644f9b77a711d32739aaefd0d2d04b28 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/eb/2e/76aff3b25dd06cab06622f82a4790ff5002ab686e940847bb2503b4b2122/scipy-0.17.1-cp34-cp34m-manylinux1_x86_64.whl#md5=bb39b9e1d16fa220967ad7edd39a8b28 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/eb/7e/27b3b9e26cb64e081799546a756059baf285eb886a771e9d26743876ccbb/scipy-0.19.0-cp27-cp27mu-manylinux1_x86_64.whl#md5=adfa1f5127a789165dfe9ff140ec0d6e (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/eb/8b/cb7e8eb19e1ee365afcf885ddaccee87e0ec0946ba06b9a3a479dbfaff3c/scipy-0.16.1.zip#md5=f473f9cd366daf4106003accff32c25f (from https://pypi.python.org/simple/scipy/), version: 0.16.1
    Found link https://pypi.python.org/packages/ed/23/cc831da308cf4f7e319c73e32197a1204daed6ce8c76c741fcaf1903c489/scipy-1.0.0rc2-cp36-none-win_amd64.whl#md5=9184ee5f1dd5745e42901b0a9de40373 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 1.0.0rc2
    Skipping link https://pypi.python.org/packages/ed/9b/5785bfc3568bf55a640a18f2471ee9694309165d8b21f1c3fbd8e6883b29/scipy-0.18.0rc2-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=c2d94301683b11ba94d5f01901901511 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/f0/5c/bc1e0c17b1fbf6e21827e9da97f2f584d8dc51993717479adff778ba718a/scipy-1.0.0rc2-cp27-none-win_amd64.whl#md5=6564469d47599864a24d4987a731ae29 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/f0/94/d6b970a584752c79184faaf968b8b0ff35bb50b115daa897d38b0c1560d9/scipy-1.0.0rc2-cp35-cp35m-manylinux1_x86_64.whl#md5=971f9584a46c4b6c34cc10de51a1859f (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Found link https://pypi.python.org/packages/f2/77/0ff9b0f46acb634a781a0e1c389a0258eb1afb7444b36b7a6d09f004f995/scipy-0.12.1.zip#md5=3f23065fc45152c92c3588dad2f20c62 (from https://pypi.python.org/simple/scipy/), version: 0.12.1
    Skipping link https://pypi.python.org/packages/f3/30/667414eb8c985dc7073d79aa24ff808118eb4c67e676c9cac7bb82309741/scipy-1.0.0b1-cp34-cp34m-manylinux1_x86_64.whl#md5=e72633b3e578fa58cde35a7ede944dbe (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/f4/9c/3166dc1181bbb3bbc12ba8a9cea24d2f646f7a0bbe102ac1a5de2675d1ea/scipy-0.13.2-cp34-cp34m-manylinux1_x86_64.whl#md5=b90f0ad41df64b0b4e284c04f8766c07 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/f5/a8/87c83acd5899c8017a220092a09fc54f89150130683ba1d2e14aafe898f4/scipy-0.18.1-cp35-cp35m-manylinux1_x86_64.whl#md5=e3855590d4627e70b683689f8b6b0c4e (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/f8/85/37e205d2c48a9691078bd3cd6b22237e399dc1ba049d31ba8e57da44b5be/scipy-0.18.1.zip#md5=99127abce294eaf76eafb80ef431bb9b (from https://pypi.python.org/simple/scipy/), version: 0.18.1
    Skipping link https://pypi.python.org/packages/f9/27/6b42b47677b435c3b60bf7b6a39da93aff70c93803b402a03648c5a1fcd3/scipy-0.14.0-cp33-cp33m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl#md5=0ff3c20cb8e9c5c38e5a18cda3178ca7 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/f9/52/8900b9b9d1e29ecc8eb8c626bb13b5947a1709252c9530f4716aa6f78639/scipy-1.0.0rc1-cp34-none-win32.whl#md5=6be6b133e61f4989db6553daecb5f5e0 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/f9/b8/ea28f1b6277b5e3b5925d1675e0ab2121f5fb2f557784e4f11590c8d2937/scipy-1.0.0rc1-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=f2511afede0db6d715c412a90a0d7fbc (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/f9/f8/fce4a6bac663bd7ecb9106e9e7ef6492a47f9140d489d7d04091507308b4/scipy-0.16.1-cp26-cp26mu-manylinux1_x86_64.whl#md5=0735aae26686ae02f7e0da11f6188d1b (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Found link https://pypi.python.org/packages/fb/06/571aa713e585b3529dad8838ce2c67178e68c37c5c838772282c83faea68/scipy-0.10.1.tar.gz#md5=6ad976549e22e04ca93e70cf55b70a22 (from https://pypi.python.org/simple/scipy/), version: 0.10.1
    Skipping link https://pypi.python.org/packages/fc/1b/984a997a6e1af1d55a05bafb9b0fcbf008a9114ff0549476c1fd25db44d6/scipy-0.17.0-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=c6c64c6511ba0de09ca973aaf881b354 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/fc/4e/9d106d322165d4b5c75b859d79c984ab93c12525863245265d9cfee042d7/scipy-0.15.1-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=a8cf565477600cbedcd5462f2baeeb0e (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/fc/72/9403ced8a4700b031cc32a12f5711bbb5f7491fb01a2e48030a0dc1acddc/scipy-0.18.0-cp27-cp27mu-manylinux1_x86_64.whl#md5=96f1e6ac2ed3a845802050840929681a (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/fd/0a/9d0f9c89c7f44728cd8d0e9a46fb21ef3b61e51812eb9c2cd098593fa97b/scipy-1.0.0rc2-cp34-cp34m-manylinux1_i686.whl#md5=ae27d4c95298b1cbf59a215af4b51223 (from https://pypi.python.org/simple/scipy/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/fd/d9/1cb8ab24adeb3ffca0fa5ac8c1875bdb0452a773a68095c7824ced4b4f2e/scipy-0.16.0-cp34-cp34m-manylinux1_x86_64.whl#md5=7dca6350615b0b32619f8b437cffac97 (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/fe/5a/44dd48306b28f47e08e2daf8c19827ebf99ff8cf983fabe92d9408bc6bd1/scipy-0.14.1rc1.dev_52fb336-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl#md5=45c8e4c39aff1eb30b870796e039adce (from https://pypi.python.org/simple/scipy/); it is not compatible with this Python
  Using version 0.19.1 (newest of versions: 0.8.0, 0.9.0, 0.10.0, 0.10.1, 0.11.0, 0.12.0, 0.12.1, 0.13.0, 0.13.1, 0.13.2, 0.13.3, 0.14.0, 0.14.1, 0.15.0, 0.15.1, 0.16.0, 0.16.1, 0.17.0, 0.17.1, 0.18.0, 0.18.1, 0.19.0, 0.19.1)
  Looking up "https://pypi.python.org/packages/52/67/d9ef9b5058d4a9e3f0ae641ec151790622cbeb37f157de5773358e2bf3da/scipy-0.19.1.tar.gz" in the cache
  Current age based on date: 1332
  Freshness lifetime from max-age: 31557600
  The response is "fresh", returning cached response
  31557600 > 1332
  Using cached scipy-0.19.1.tar.gz
  Downloading from URL https://pypi.python.org/packages/52/67/d9ef9b5058d4a9e3f0ae641ec151790622cbeb37f157de5773358e2bf3da/scipy-0.19.1.tar.gz#md5=6b4d91b62f1926282b127194a06b72b3 (from https://pypi.python.org/simple/scipy/)
  Running setup.py (path:C:\Users\s530101\AppData\Local\Temp\pip-build-mgoh5lx5\SciPy\setup.py) egg_info for package SciPy
    Running command python setup.py egg_info
    running egg_info
    creating pip-egg-info\scipy.egg-info
    writing pip-egg-info\scipy.egg-info\PKG-INFO
    writing dependency_links to pip-egg-info\scipy.egg-info\dependency_links.txt
    writing top-level names to pip-egg-info\scipy.egg-info\top_level.txt
    writing manifest file 'pip-egg-info\scipy.egg-info\SOURCES.txt'
    warning: manifest_maker: standard file '-c' not found

    reading manifest file 'pip-egg-info\scipy.egg-info\SOURCES.txt'
    reading manifest template 'MANIFEST.in'
    warning: no previously-included files matching '*_subr_*.f' found under directory 'scipy\linalg\src\id_dist\src'
    no previously-included directories found matching 'benchmarks\env'
    no previously-included directories found matching 'benchmarks\results'
    no previously-included directories found matching 'benchmarks\html'
    no previously-included directories found matching 'benchmarks\scipy'
    no previously-included directories found matching 'scipy\special\tests\data\boost'
    no previously-included directories found matching 'scipy\special\tests\data\gsl'
    no previously-included directories found matching 'doc\build'
    no previously-included directories found matching 'doc\source\generated'
    warning: no previously-included files matching '*.pyc' found anywhere in distribution
    warning: no previously-included files matching '*~' found anywhere in distribution
    warning: no previously-included files matching '*.bak' found anywhere in distribution
    warning: no previously-included files matching '*.swp' found anywhere in distribution
    warning: no previously-included files matching '*.pyo' found anywhere in distribution
    writing manifest file 'pip-egg-info\scipy.egg-info\SOURCES.txt'
  Source in c:\users\s530101\appdata\local\temp\pip-build-mgoh5lx5\scipy has version 0.19.1, which satisfies requirement SciPy from https://pypi.python.org/packages/52/67/d9ef9b5058d4a9e3f0ae641ec151790622cbeb37f157de5773358e2bf3da/scipy-0.19.1.tar.gz#md5=6b4d91b62f1926282b127194a06b72b3
Installing collected packages: SciPy
  Running setup.py install for SciPy ...     Running command "c:\program files\python36\python.exe" -u -c "import setuptools, tokenize;__file__='C:\\Users\\s530101\\AppData\\Local\\Temp\\pip-build-mgoh5lx5\\SciPy\\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\s530101\AppData\Local\Temp\pip-2_4mzs__-record\install-record.txt --single-version-externally-managed --compile

    Note: if you need reliable uninstall behavior, then install
    with pip instead of using `setup.py install`:

      - `pip install .`       (from a git repo or downloaded source
                               release)
      - `pip install scipy`   (last SciPy release on PyPI)

    lapack_opt_info:
    lapack_mkl_info:
      libraries mkl_rt not found in ['c:\\program files\\python36\\lib', 'C:\\', 'c:\\program files\\python36\\libs']
      NOT AVAILABLE

    openblas_lapack_info:
    c:\program files\python36\lib\site-packages\numpy\distutils\system_info.py:655: UserWarning: Specified path c:\opt\64\lib is invalid.
      return self.get_paths(self.section, key)
      libraries libopenblas_v0.2.20_mingwpy not found in []
      NOT AVAILABLE

    atlas_3_10_threads_info:
    Setting PTATLAS=ATLAS
      libraries tatlas,tatlas not found in c:\program files\python36\lib
      libraries lapack_atlas not found in c:\program files\python36\lib
      libraries tatlas,tatlas not found in C:\
      libraries lapack_atlas not found in C:\
      libraries tatlas,tatlas not found in c:\program files\python36\libs
      libraries lapack_atlas not found in c:\program files\python36\libs
    
      NOT AVAILABLE

    atlas_3_10_info:
      libraries satlas,satlas not found in c:\program files\python36\lib
      libraries lapack_atlas not found in c:\program files\python36\lib
      libraries satlas,satlas not found in C:\
      libraries lapack_atlas not found in C:\
      libraries satlas,satlas not found in c:\program files\python36\libs
      libraries lapack_atlas not found in c:\program files\python36\libs
    
      NOT AVAILABLE

    atlas_threads_info:
    Setting PTATLAS=ATLAS
      libraries ptf77blas,ptcblas,atlas not found in c:\program files\python36\lib
      libraries lapack_atlas not found in c:\program files\python36\lib
      libraries ptf77blas,ptcblas,atlas not found in C:\
      libraries lapack_atlas not found in C:\
      libraries ptf77blas,ptcblas,atlas not found in c:\program files\python36\libs
      libraries lapack_atlas not found in c:\program files\python36\libs
    
      NOT AVAILABLE

    atlas_info:
      libraries f77blas,cblas,atlas not found in c:\program files\python36\lib
      libraries lapack_atlas not found in c:\program files\python36\lib
      libraries f77blas,cblas,atlas not found in C:\
      libraries lapack_atlas not found in C:\
      libraries f77blas,cblas,atlas not found in c:\program files\python36\libs
      libraries lapack_atlas not found in c:\program files\python36\libs
    
      NOT AVAILABLE

    c:\program files\python36\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:\\program files\\python36\\lib', 'C:\\', 'c:\\program files\\python36\\libs']
      NOT AVAILABLE

    c:\program files\python36\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:\program files\python36\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 "", line 1, in 
      File "C:\Users\s530101\AppData\Local\Temp\pip-build-mgoh5lx5\SciPy\setup.py", line 416, in 
        setup_package()
      File "C:\Users\s530101\AppData\Local\Temp\pip-build-mgoh5lx5\SciPy\setup.py", line 412, in setup_package
        setup(**metadata)
      File "c:\program files\python36\lib\site-packages\numpy\distutils\core.py", line 135, in setup
        config = configuration()
      File "C:\Users\s530101\AppData\Local\Temp\pip-build-mgoh5lx5\SciPy\setup.py", line 336, in configuration
        config.add_subpackage('scipy')
      File "c:\program files\python36\lib\site-packages\numpy\distutils\misc_util.py", line 1029, in add_subpackage
        caller_level = 2)
      File "c:\program files\python36\lib\site-packages\numpy\distutils\misc_util.py", line 998, in get_subpackage
        caller_level = caller_level + 1)
      File "c:\program files\python36\lib\site-packages\numpy\distutils\misc_util.py", line 935, 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:\program files\python36\lib\site-packages\numpy\distutils\misc_util.py", line 1029, in add_subpackage
        caller_level = 2)
      File "c:\program files\python36\lib\site-packages\numpy\distutils\misc_util.py", line 998, in get_subpackage
        caller_level = caller_level + 1)
      File "c:\program files\python36\lib\site-packages\numpy\distutils\misc_util.py", line 935, 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
error
Cleaning up...
  Removing source in C:\Users\s530101\AppData\Local\Temp\pip-build-mgoh5lx5\SciPy
Command ""c:\program files\python36\python.exe" -u -c "import setuptools, tokenize;__file__='C:\\Users\\s530101\\AppData\\Local\\Temp\\pip-build-mgoh5lx5\\SciPy\\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\s530101\AppData\Local\Temp\pip-2_4mzs__-record\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in C:\Users\s530101\AppData\Local\Temp\pip-build-mgoh5lx5\SciPy\
Exception information:
Traceback (most recent call last):
  File "c:\program files\python36\lib\site-packages\pip\basecommand.py", line 215, in main
    status = self.run(options, args)
  File "c:\program files\python36\lib\site-packages\pip\commands\install.py", line 342, in run
    prefix=options.prefix_path,
  File "c:\program files\python36\lib\site-packages\pip\req\req_set.py", line 784, in install
    **kwargs
  File "c:\program files\python36\lib\site-packages\pip\req\req_install.py", line 878, in install
    spinner=spinner,
  File "c:\program files\python36\lib\site-packages\pip\utils\__init__.py", line 707, in call_subprocess
    % (command_desc, proc.returncode, cwd))
pip.exceptions.InstallationError: Command ""c:\program files\python36\python.exe" -u -c "import setuptools, tokenize;__file__='C:\\Users\\s530101\\AppData\\Local\\Temp\\pip-build-mgoh5lx5\\SciPy\\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\s530101\AppData\Local\Temp\pip-2_4mzs__-record\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in C:\Users\s530101\AppData\Local\Temp\pip-build-mgoh5lx5\SciPy\

C:\windows\system32>pip search SciPy
apgl (0.8.1)                 - A fast python graph library based on numpy and
                               scipy.
austin (2016.0.1)            - austin scipy package
cloudml (0.4.2)              - Machine learning as a service scipy-trainer
coo_utils (0.1.2.1)          - utilities for managing nested lists of lists of
                               scipy.sparse matrices
Cybuild (0.1.post4)          - Cybuild =======  High-level compilation of
                               Cython extension types, based on
                               `scipy.weave.build_tools`.
dask-distance (0.2.0)        - Distance computations with Dask (akin to
                               scipy.spatial.distance)
scipy-data_fitting (1.0.2)   - Complete pipeline for easy data fitting with
                               Python.
ddeint (0.1.02)              - Scipy-based Delay Differential Equations solver
DESPOTIC (2.1)               - a Python / numPy / sciPy package to perform
                               calculations related to line emission and
                               thermal behavior in cold interstellar clouds.
euroscipy2017 (0.2)          - Sample package for demonstrating flit & flonda.
python-fit (1.0.0)           - A python module using scipy's orthogonal
                               distance regression that makes fitting data
                               easy.
FITS_tools (0.2)             - Tools for manipulating FITS images using
                               primarily scipy & native python routines
scikit-fuzzy (0.3.1)         - Fuzzy logic toolkit for SciPy
scikit-geodesic (1.1)        - A SciPy tool for computing geodesics in an
                               isotropic Riemannian manifold of arbitrary
                               dimension. It implements the Birkhoff curve
                               shortening algorithm for finding global
                               geodesics.
scikit-gof (0.1.3)           - Variations on goodness of fit tests for SciPy.
graf (0.1.2)                 - Light weight numpy, scipy, and matplotlib
                               wrapper
scikit-gstat (0.1.1)         - Geostatistical expansion in the scipy style
h5sparse (0.0.4)             - Scipy sparse matrix in HDF5.
hcluster (0.2.0)             - A hierarchical clustering package for Scipy.
hydrobox (0.0.4)             - Hydrological toolbox build on top of scipy and
                               pandas
scikit-image (0.13.1)        - Image processing routines for SciPy
kdense (1.0.0)               - Efficient kernel density estimation for
                               numpy+scipy.
lsq_linear (0.1.0)           - Implementation of scipy.optimize.lsq_linear for
                               old scipy version
mathstats (0.2.6)            - Statistical functions, goodness-of-fit tests
                               and special and special distributions not
                               implemented in scipy/numpy .
matscipy (0.1.4)             - Generic Python Materials Science tools
mdct (0.4)                   - A fast MDCT implementation using SciPy and FFTs
NeuroSciPy (0.0.0)           -
ParametricModeling (0.1.9)   - An Sklearn interface around
                               scipy.optimize.least_squares for parametric
                               modeling
piquant (0.1)                - A Python package extending NumPy and SciPy to
                               allow specification of numbers and arrays with
                               physical units.
PXL (0.0.9)                  - Extra functions built on NumPy, SciPy, pandas,
                               matplotlib, etc.
PyS3DE (1.0.5)               - Python Solver via Sympy + SciPy/NumPy for
                               Stochastic Differential Equations!
pythreshold (0.1.2)          - Numpy/Scipy implementations of some image
                               thresholding algorithms
rasterio (1.0a10)            - Fast and direct raster I/O for use with Numpy
                               and SciPy
scikit-video (0.1.2)         - Video processing routines for SciPy
scikits.bootstrap (0.3.3)    - Bootstrap confidence interval estimation
                               routines for SciPy
scikits.eartho (0.1dev)      - Earth Observation routines for SciPy
scikits.fitting (0.6)        - Framework for fitting functions to data with
                               SciPy
scikits.statsmodels (0.3.1)  - Statistical computations and models for use
                               with SciPy
scipy-stack (0.0.4)          - Helper to install the SciPy stack
scipy-sugar (1.0.4)          - Missing SciPy functionalities
scipy (1.0.0rc2)             - SciPy: Scientific Library for Python
scipydirect (1.3)            - Python wrapper to the DIRECT algorithm
scipyplot (0.0.5)            - A Python Toolbox for Creating Scientific
                               Article Figures
ScipySim (0.1.5)             - Simulation in Python.
SimpleSpectral (1.0.0)       - Heavily simplified scipy.signal.spectral module
                               which only depends on NumPy and supports pyFFTW
spicy (0.16.0)               - Because spellchecker. SciPy at your fingertips
statspy (0.1.0a1)            - Python module for statistics built on top of
                               NumPy/SciPy
stsci.ndimage (0.10.0)       - Various functions for multi-dimensional image
                               processing--fork of scipy.ndimage for use with
                               stsci_python
stscipython (2.15.1)         - General astronomical data analysis and Hubble
                               Space Telescope data calibration
traittypes (0.0.6)           - Scipy trait types

C:\windows\system32>pip -h

Usage:
  pip  [options]

Commands:
  install                     Install packages.
  download                    Download packages.
  uninstall                   Uninstall packages.
  freeze                      Output installed packages in requirements format.
  list                        List installed packages.
  show                        Show information about installed packages.
  check                       Verify installed packages have compatible dependencies.
  search                      Search PyPI for packages.
  wheel                       Build wheels from your requirements.
  hash                        Compute hashes of package archives.
  completion                  A helper command used for command completion.
  help                        Show help for commands.

General Options:
  -h, --help                  Show help.
  --isolated                  Run pip in an isolated mode, ignoring
                              environment variables and user configuration.
  -v, --verbose               Give more output. Option is additive, and can be
                              used up to 3 times.
  -V, --version               Show version and exit.
  -q, --quiet                 Give less output. Option is additive, and can be
                              used up to 3 times (corresponding to WARNING,
                              ERROR, and CRITICAL logging levels).
  --log                 Path to a verbose appending log.
  --proxy              Specify a proxy in the form
                              [user:passwd@]proxy.server:port.
  --retries          Maximum number of retries each connection should
                              attempt (default 5 times).
  --timeout              Set the socket timeout (default 15 seconds).
  --exists-action     Default action when a path already exists:
                              (s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.
  --trusted-host    Mark this host as trusted, even though it does
                              not have valid or any HTTPS.
  --cert                Path to alternate CA bundle.
  --client-cert         Path to SSL client certificate, a single file
                              containing the private key and the certificate
                              in PEM format.
  --cache-dir            Store the cache data in .
  --no-cache-dir              Disable the cache.
  --disable-pip-version-check
                              Don't periodically check PyPI to determine
                              whether a new version of pip is available for
                              download. Implied with --no-index.

C:\windows\system32>pip search -h

Usage:
  pip search [options] 

Description:
  Search for PyPI packages whose name or summary contains .

Search Options:
  -i, --index            Base URL of Python Package Index (default
                              https://pypi.python.org/pypi)

General Options:
  -h, --help                  Show help.
  --isolated                  Run pip in an isolated mode, ignoring
                              environment variables and user configuration.
  -v, --verbose               Give more output. Option is additive, and can be
                              used up to 3 times.
  -V, --version               Show version and exit.
  -q, --quiet                 Give less output. Option is additive, and can be
                              used up to 3 times (corresponding to WARNING,
                              ERROR, and CRITICAL logging levels).
  --log                 Path to a verbose appending log.
  --proxy              Specify a proxy in the form
                              [user:passwd@]proxy.server:port.
  --retries          Maximum number of retries each connection should
                              attempt (default 5 times).
  --timeout              Set the socket timeout (default 15 seconds).
  --exists-action     Default action when a path already exists:
                              (s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.
  --trusted-host    Mark this host as trusted, even though it does
                              not have valid or any HTTPS.
  --cert                Path to alternate CA bundle.
  --client-cert         Path to SSL client certificate, a single file
                              containing the private key and the certificate
                              in PEM format.
  --cache-dir            Store the cache data in .
  --no-cache-dir              Disable the cache.
  --disable-pip-version-check
                              Don't periodically check PyPI to determine
                              whether a new version of pip is available for
                              download. Implied with --no-index.

C:\windows\system32>pip install scipy
Collecting scipy
  Using cached scipy-0.19.1.tar.gz
Operation cancelled by user

C:\windows\system32>pip install -h

Usage:
  pip install [options]  [package-index-options] ...
  pip install [options] -r  [package-index-options] ...
  pip install [options] [-e]  ...
  pip install [options] [-e]  ...
  pip install [options]  ...

Description:
  Install packages from:

  - PyPI (and other indexes) using requirement specifiers.
  - VCS project urls.
  - Local project directories.
  - Local or remote source archives.

  pip also supports installing from "requirements files", which provide
  an easy way to specify a whole environment to be installed.

Install Options:
  -c, --constraint      Constrain versions using the given constraints
                              file. This option can be used multiple times.
  -e, --editable    Install a project in editable mode (i.e.
                              setuptools "develop mode") from a local project
                              path or a VCS url.
  -r, --requirement     Install from the given requirements file. This
                              option can be used multiple times.
  -b, --build            Directory to unpack packages into and build in.
  -t, --target           Install packages into . By default this
                              will not replace existing files/folders in
                              . Use --upgrade to replace existing
                              packages in  with new versions.
  -d, --download         Download packages into  instead of
                              installing them, regardless of what's already
                              installed.
  --src                  Directory to check out editable projects into.
                              The default in a virtualenv is "/src". The default for global installs is
                              "/src".
  -U, --upgrade               Upgrade all specified packages to the newest
                              available version. The handling of dependencies
                              depends on the upgrade-strategy used.
  --upgrade-strategy 
                              Determines how dependency upgrading should be
                              handled. "eager" - dependencies are upgraded
                              regardless of whether the currently installed
                              version satisfies the requirements of the
                              upgraded package(s). "only-if-needed" -  are
                              upgraded only when they do not satisfy the
                              requirements of the upgraded package(s).
  --force-reinstall           When upgrading, reinstall all packages even if
                              they are already up-to-date.
  -I, --ignore-installed      Ignore the installed packages (reinstalling
                              instead).
  --ignore-requires-python    Ignore the Requires-Python information.
  --no-deps                   Don't install package dependencies.
  --install-option   Extra arguments to be supplied to the setup.py
                              install command (use like --install-option="--
                              install-scripts=/usr/local/bin"). Use multiple
                              --install-option options to pass multiple
                              options to setup.py install. If you are using an
                              option with a directory path, be sure to use
                              absolute path.
  --global-option    Extra global options to be supplied to the
                              setup.py call before the install command.
  --user                      Install to the Python user install directory for
                              your platform. Typically ~/.local/, or
                              %APPDATA%\Python on Windows. (See the Python
                              documentation for site.USER_BASE for full
                              details.)
  --egg                       Install packages as eggs, not 'flat', like pip
                              normally does. This option is not about
                              installing *from* eggs. (WARNING: Because this
                              option overrides pip's normal install logic,
                              requirements files may not behave as expected.)
  --root                 Install everything relative to this alternate
                              root directory.
  --prefix               Installation prefix where lib, bin and other
                              top-level folders are placed
  --compile                   Compile py files to pyc
  --no-compile                Do not compile py files to pyc
  --no-use-wheel              Do not Find and prefer wheel archives when
                              searching indexes and find-links locations.
                              DEPRECATED in favour of --no-binary.
  --no-binary 
                              Do not use binary packages. Can be supplied
                              multiple times, and each time adds to the
                              existing value. Accepts either :all: to disable
                              all binary packages, :none: to empty the set, or
                              one or more package names with commas between
                              them. Note that some packages are tricky to
                              compile and may fail to install when this option
                              is used on them.
  --only-binary 
                              Do not use source packages. Can be supplied
                              multiple times, and each time adds to the
                              existing value. Accepts either :all: to disable
                              all source packages, :none: to empty the set, or
                              one or more package names with commas between
                              them. Packages without binary distributions will
                              fail to install when this option is used on
                              them.
  --pre                       Include pre-release and development versions. By
                              default, pip only finds stable versions.
  --no-clean                  Don't clean up build directories.
  --require-hashes            Require a hash to check each requirement
                              against, for repeatable installs. This option is
                              implied when any package in a requirements file
                              has a --hash option.

Package Index Options (including deprecated options):
  -i, --index-url        Base URL of Python Package Index (default
                              https://pypi.python.org/simple). This should
                              point to a repository compliant with PEP 503
                              (the simple repository API) or a local directory
                              laid out in the same format.
  --extra-index-url      Extra URLs of package indexes to use in addition
                              to --index-url. Should follow the same rules as
                              --index-url.
  --no-index                  Ignore package index (only looking at --find-
                              links URLs instead).
  -f, --find-links       If a url or path to an html file, then parse for
                              links to archives. If a local path or file://
                              url that's a directory, then look for archives
                              in the directory listing.
  --process-dependency-links  Enable the processing of dependency links.

General Options:
  -h, --help                  Show help.
  --isolated                  Run pip in an isolated mode, ignoring
                              environment variables and user configuration.
  -v, --verbose               Give more output. Option is additive, and can be
                              used up to 3 times.
  -V, --version               Show version and exit.
  -q, --quiet                 Give less output. Option is additive, and can be
                              used up to 3 times (corresponding to WARNING,
                              ERROR, and CRITICAL logging levels).
  --log                 Path to a verbose appending log.
  --proxy              Specify a proxy in the form
                              [user:passwd@]proxy.server:port.
  --retries          Maximum number of retries each connection should
                              attempt (default 5 times).
  --timeout              Set the socket timeout (default 15 seconds).
  --exists-action     Default action when a path already exists:
                              (s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.
  --trusted-host    Mark this host as trusted, even though it does
                              not have valid or any HTTPS.
  --cert                Path to alternate CA bundle.
  --client-cert         Path to SSL client certificate, a single file
                              containing the private key and the certificate
                              in PEM format.
  --cache-dir            Store the cache data in .
  --no-cache-dir              Disable the cache.
  --disable-pip-version-check
                              Don't periodically check PyPI to determine
                              whether a new version of pip is available for
                              download. Implied with --no-index.

C:\windows\system32>pip -V
pip 9.0.1 from c:\program files\python36\lib\site-packages (python 3.6)

C:\windows\system32>pip install scipy-1.0.0rc2-cp36-none-win_amd64.whl
Requirement 'scipy-1.0.0rc2-cp36-none-win_amd64.whl' looks like a filename, but the file does not exist
Processing c:\windows\system32\scipy-1.0.0rc2-cp36-none-win_amd64.whl
Exception:
Traceback (most recent call last):
  File "c:\program files\python36\lib\site-packages\pip\basecommand.py", line 215, in main
    status = self.run(options, args)
  File "c:\program files\python36\lib\site-packages\pip\commands\install.py", line 324, in run
    requirement_set.prepare_files(finder)
  File "c:\program files\python36\lib\site-packages\pip\req\req_set.py", line 380, in prepare_files
    ignore_dependencies=self.ignore_dependencies))
  File "c:\program files\python36\lib\site-packages\pip\req\req_set.py", line 620, in _prepare_file
    session=self.session, hashes=hashes)
  File "c:\program files\python36\lib\site-packages\pip\download.py", line 809, in unpack_url
    unpack_file_url(link, location, download_dir, hashes=hashes)
  File "c:\program files\python36\lib\site-packages\pip\download.py", line 715, in unpack_file_url
    unpack_file(from_path, location, content_type, link)
  File "c:\program files\python36\lib\site-packages\pip\utils\__init__.py", line 599, in unpack_file
    flatten=not filename.endswith('.whl')
  File "c:\program files\python36\lib\site-packages\pip\utils\__init__.py", line 482, in unzip_file
    zipfp = open(filename, 'rb')
FileNotFoundError: [Errno 2] No such file or directory: 'C:\\windows\\system32\\scipy-1.0.0rc2-cp36-none-win_amd64.whl'

C:\windows\system32>pip install scipy scipy-1.0.0rc2-cp36-none-win_amd64.whl
Requirement 'scipy-1.0.0rc2-cp36-none-win_amd64.whl' looks like a filename, but the file does not exist
Double requirement given: scipy==1.0.0rc2 from file:///C:/windows/system32/scipy-1.0.0rc2-cp36-none-win_amd64.whl (already in scipy, name='scipy')

C:\windows\system32>pip install scipy https://pypi.python.org/packages/ed/23/cc831da308cf4f7e319c73e32197a1204daed6ce8c76c741fcaf1903c489/scipy-1.0.0rc2-cp36-none-win_amd64.whl#md5=9184ee5f1dd5745e42901b0a9de40373
Double requirement given: scipy==1.0.0rc2 from https://pypi.python.org/packages/ed/23/cc831da308cf4f7e319c73e32197a1204daed6ce8c76c741fcaf1903c489/scipy-1.0.0rc2-cp36-none-win_amd64.whl#md5=9184ee5f1dd5745e42901b0a9de40373 (already in scipy, name='scipy')

C:\windows\system32>pip install https://pypi.python.org/packages/ed/23/cc831da308cf4f7e319c73e32197a1204daed6ce8c76c741fcaf1903c489/scipy-1.0.0rc2-cp36-none-win_amd64.whl#md5=9184ee5f1dd5745e42901b0a9de40373
Collecting scipy==1.0.0rc2 from https://pypi.python.org/packages/ed/23/cc831da308cf4f7e319c73e32197a1204daed6ce8c76c741fcaf1903c489/scipy-1.0.0rc2-cp36-none-win_amd64.whl#md5=9184ee5f1dd5745e42901b0a9de40373
  Downloading scipy-1.0.0rc2-cp36-none-win_amd64.whl (30.8MB)
    100% |████████████████████████████████| 30.8MB 41kB/s
Requirement already satisfied: numpy>=1.8.2 in c:\program files\python36\lib\site-packages (from scipy==1.0.0rc2)
Installing collected packages: scipy
Successfully installed scipy-1.0.0rc2
benoit-pierre commented 6 years ago

This is normal, 1.0.0rc2 is a pre-release version, by default pip only finds stable versions. Use the install --pre option to change the behavior:

 --pre    Include pre-release and development versions. By default, pip only finds stable versions.
pradyunsg commented 6 years ago

Adding to what @benoit-pierre said, you'd probably want to do:

pip install -U --pre scipy
ghost commented 6 years ago

I understand that this is a small use case (a few months ago SciPy couldn't even be compiled on windows), but IMHO it's worth considering an improved user experience here. I suggest a simple warning message when there is a pre-release wheel available but only a source distribution for the stable version:

Note: the current stable version has no wheel but a pre-release does. Use --pre to install.
astrojuanlu commented 6 years ago

My answer would be: "please try again" :) Now SciPy has wheels for Windows.

Husky2490 commented 6 years ago

I suggest a simple warning message when there is a pre-release wheel available but only a source distribution for the stable version:

Note: the current stable version has no wheel but a pre-release does. Use --pre to install.

Has this been marked as a feature request yet?

Edit: I think that it might be best to put that as its own issue for searchability and clarity

ghost commented 6 years ago

?

Husky2490 commented 6 years ago

Maybe I'm just being dumb (please tell me if I am)

Husky2490 commented 6 years ago

I am very indecisive about things like this. Always have, most likely always will be. I think it's some kind of social anxiety as I feel like I will be wasting other people's time no matter what I choose to do sometimes. Edit: spelling

pfmoore commented 6 years ago

I marked this issue as a feature request, as you asked. You closed it (about the same time). I'm confused too. As a closed feature request, no-one is likely to do anything about it. If you'd left it open, then it's waiting for someone to submit a PR (maybe you, maybe someone else).

I certainly don't mind it being marked as a feature request. That doesn't waste anyone's time - it just flags it as a possible enhancement that would be useful to someone, and might be something that someone would like to pick up and implement. You've highlighted an area where pip could be improved, that's a useful contribution even if nothing further ever happens, and it's appreciated.

Husky2490 commented 6 years ago

alright

deveshks commented 4 years ago

I created a minimal package testpkg with version 1.0.0.dev0, and then created an sdist for it, and then tried the following commands

I first tried to install it without providing the --pre flag, and pip couldn't find it, even though I have a source distribution with the development version.

pip install --no-cache  --find-links=/Users/devesh/Desktop/testpkg/dist/ testpkg==1.0.*
Looking in links: /Users/devesh/Desktop/testpkg/dist/
ERROR: Could not find a version that satisfies the requirement testpkg==1.0.* (from versions: 1.0.0.dev0)
ERROR: No matching distribution found for testpkg==1.0.*

Now when I provided the --pre flag, pip was able to find and install it

(.env) DeveshSinghMac:testpkg devesh$ pip install --pre --no-cache  --find-links=/Users/devesh/Desktop/testpkg/dist/ testpkg==1.0.* 
Looking in links: /Users/devesh/Desktop/testpkg/dist/
Processing ./dist/testpkg-1.0.0.dev0.tar.gz
  WARNING: Requested testpkg==1.0.* from file:///Users/devesh/Desktop/testpkg/dist/testpkg-1.0.0.dev0.tar.gz, but installing version 1.0.0.dev0
Building wheels for collected packages: testpkg
  Building wheel for testpkg (setup.py) ... done
  Created wheel for testpkg: filename=testpkg-1.0.0.dev0-py3-none-any.whl size=1404 sha256=3d5204bc87fc286062115c7621a2ff8f9bb9a689210def6ca67622f46f1db1be
  Stored in directory: /private/var/folders/xg/blp845_s0xn093dyrtgy936h0000gp/T/pip-ephem-wheel-cache-i_10krxc/wheels/00/71/2e/7fad5819728fd08c9f0d89a85bf5f794c25ee7042ca3e4524e
Successfully built testpkg
Installing collected packages: testpkg
Successfully installed testpkg-1.0.0.dev0

So now, if I understand correctly, for this feature, we should be printing the warning Note: the current stable version has no wheel but a pre-release does. Use --pre to install in the first case?

uranusjr commented 4 years ago

Also related is #7579, which proposes to change the behaviour and just let pip find rc versions when no stable matches are available.

deveshks commented 4 years ago

Also related is #7579 , which proposes to change the behaviour and just let pip find rc versions when no stable matches are available.

Thanks for the reference. That change seems to require a PEP update as per https://github.com/pypa/pip/issues/7579#issuecomment-573418509 , which IMO is a much larger change, w.r.t this issue which is to try and find a pre-release version match according to the specifier, and suggesting the user that such a version is available and can be installed.

Considering these facts, should I go ahead and attempt this change in a PR, or we should way for resolution of #7579 , at which point this will automatically be resolved?

uranusjr commented 4 years ago

I don’t think anyone is actively pushing a PEP change on this. Better go on and attempt the error message if you want to get this resolved.

deveshks commented 4 years ago

I don’t think anyone is actively pushing a PEP change on this. Better go on and attempt the error message if you want to get this resolved.

Sure will do. But I am still wondering if this is a beneficial change, and the warning/suggestion about trying to install a pre-release actually help the user?

uranusjr commented 4 years ago

IMO the message would be quite useful, at least from my own experience.

deveshks commented 4 years ago

IMO the message would be quite useful, at least from my own experience.

Okay, I will create a PR for the same then. Also, IIUC, https://github.com/pypa/pip/blob/6a7bf9477681d133467740568e24a6382dc4e29c/src/pip/_internal/index/package_finder.py#L461-L473

is where we decide whether to include or exclude prereleases. So either we can

  1. Always include pre-releases and then filter them out if -pre flag was not set, and then if no applicable_candidates were found, raise a warning. This is a more eager approach.

  2. If -pre flag was not set, and then if no applicable_candidates were found, rerun the specifier.filter and see if any pre-releases can be found, and if they are, raise a warning. This is a more lazy approach.

I would be happy to hear your thoughts on both of these, or if there are better ways of doing this then these two.

NoahGorny commented 4 years ago

@deveshks I like the first approach better

deveshks commented 4 years ago

@deveshks I like the first approach better

On thinking further, I actually think that the situation where a pre-release has a wheel, but a stable version does might be infrequent (For e.g. in pip, we only had pre-releases for about 2 weeks, before we will have a full release). So the second approach of considering pre-releases in the search lazily might be better, rather than eagerly searching for all pre-releases always, but since most of the times there would be a stable release found.

But I will wait for others to chime in before deciding on the approach

pfmoore commented 4 years ago

I'm now confused as to what's being proposed here. To state my views:

  1. Any change to what pip installs (or a change to install where it currently says nothing is available) would need a PEP 440 change, as per https://github.com/pypa/pip/issues/7579#issuecomment-573418509 which notes that pip is currently PEP-compliant here.
  2. Providing a warning when pip fails to install anything but there's pre-releases available seems reasonable, but it doesn't address the OP's situation, where if I understand it, there was a normal release but only in source form. In that case --only-binary or --prefer-binary might have helped, but I suspect that anyone knowing they needed to use that would have also been able to diagnose "I got sources rather than a wheel" from the messages given.
  3. Producing a warning when we choose a source release and binaries are available for other releases (pre-release or not) is IMO too intrusive.
  4. Producing better output, showing just enough information to make it clear that we did a source install, while not overwhelming the user with build information (but still showing build errors) is a hard problem. I don't think we have it right, but I'm not sure how to improve things. Ideas are welcome here.

So adding a warning is probably OK in theory, but I don't think there's any particular evidence that it would be useful in practice.

deveshks commented 4 years ago
  1. Any change to what pip installs (or a change to install where it currently says nothing is available) would need a PEP 440 change, as per #7579 (comment) which notes that pip is currently PEP-compliant here.

Agreed. The final outcome of a PR generated from this will be to just to suggest the user about potential installation options, and not to change the default behaviour in any way.

  1. Providing a warning when pip fails to install anything but there's pre-releases available seems reasonable, but it doesn't address the OP's situation, where if I understand it, there was a normal release but only in source form. In that case --only-binary or --prefer-binary might have helped, but I suspect that anyone knowing they needed to use that would have also been able to diagnose "I got sources rather than a wheel" from the messages given.

I think I misread the intentions of the OP and assumed that we needed to provide a warning when pip fails to install anything but there's pre-releases available, and your outline above is the actual problem faced. But I agree that the user can figure this out on it's own as well, and the warning won't serve a real purpose. Thanks for the clarification.

  1. Producing a warning when we choose a source release and binaries are available for other releases (pre-release or not) is IMO too intrusive.

Agreed, and I think we won't go that route.

  1. Producing better output, showing just enough information to make it clear that we did a source install, while not overwhelming the user with build information (but still showing build errors) is a hard problem. I don't think we have it right, but I'm not sure how to improve things. Ideas are welcome here.

I think this is a better problem to handle, but it might be out of scope of this issue, and would warrant a new issue IMO

So adding a warning is probably OK in theory, but I don't think there's any particular evidence that it would be useful in practice.

Yes, from the different points you raised, I guess the warning might be too intrusive, or not very helpful. So if we want to address point 4, a new issue can be created. Otherwise we can go ahead and close this issue.

Also please feel free to correct me in the understanding of any of the points I mentioned above 😊