Wednesday, October 30, 2019

Install false-alarm-reducation in the virtual environment

In the requirements.txt

fastdtw>=0.3.2
matplotlib>=2.0.2
numpy>=1.13.1
pandas>=0.20.3
PeakUtils>=1.1.0
scikit-learn>=0.19.0
scipy>=0.19.0
sklearn>=0.0
spectrum>=0.7.1
virtualenv>=15.0.1
wfdb>=1.2.2


However, in the setup.py,
...
    install_requires=[
         'fastdtw>=0.3.2'
        ,'matplotlib>=2.0.2'
        ,'numpy>=1.13.1'
        ,'pandas>=0.20.3'
        ,'PeakUtils>=1.1.0'
        ,'scikit-learn>=0.19.0'
        ,'scipy>=0.19.0'
        ,'sklearn>=0.0'
        ,'spectrum>=0.7.1'
        ,'wfdb==1.2.2'
        ],

...

After changing 'wfdb==1.2.2' to 'wfdb>=1.2.2', then I can install the whole packages.

(env) D:\dvp\false-alarm>python setup.py install
running install
running bdist_egg
running egg_info
writing pyfar.egg-info\PKG-INFO
writing dependency_links to pyfar.egg-info\dependency_links.txt
writing requirements to pyfar.egg-info\requires.txt
writing top-level names to pyfar.egg-info\top_level.txt
reading manifest file 'pyfar.egg-info\SOURCES.txt'
writing manifest file 'pyfar.egg-info\SOURCES.txt'
installing library code to build\bdist.win-amd64\egg
running install_lib
running build_py
creating build\bdist.win-amd64\egg
creating build\bdist.win-amd64\egg\pyfar
copying build\lib\pyfar\baseline_algorithm.py -> build\bdist.win-amd64\egg\pyfar
copying build\lib\pyfar\classifier.py -> build\bdist.win-amd64\egg\pyfar
copying build\lib\pyfar\dtw.py -> build\bdist.win-amd64\egg\pyfar
copying build\lib\pyfar\parameters.py -> build\bdist.win-amd64\egg\pyfar
copying build\lib\pyfar\pipeline.py -> build\bdist.win-amd64\egg\pyfar
copying build\lib\pyfar\sigtypes -> build\bdist.win-amd64\egg\pyfar
copying build\lib\pyfar\utils.py -> build\bdist.win-amd64\egg\pyfar
copying build\lib\pyfar\ventricular_beat_bank.py -> build\bdist.win-amd64\egg\pyfar
copying build\lib\pyfar\ventricular_beat_stdev.py -> build\bdist.win-amd64\egg\pyfar
copying build\lib\pyfar\vtach_beats.csv -> build\bdist.win-amd64\egg\pyfar
copying build\lib\pyfar\__init__.py -> build\bdist.win-amd64\egg\pyfar
byte-compiling build\bdist.win-amd64\egg\pyfar\baseline_algorithm.py to baseline_algorithm.cpython-37.pyc
byte-compiling build\bdist.win-amd64\egg\pyfar\classifier.py to classifier.cpython-37.pyc
byte-compiling build\bdist.win-amd64\egg\pyfar\dtw.py to dtw.cpython-37.pyc
byte-compiling build\bdist.win-amd64\egg\pyfar\parameters.py to parameters.cpython-37.pyc
byte-compiling build\bdist.win-amd64\egg\pyfar\pipeline.py to pipeline.cpython-37.pyc
byte-compiling build\bdist.win-amd64\egg\pyfar\utils.py to utils.cpython-37.pyc
byte-compiling build\bdist.win-amd64\egg\pyfar\ventricular_beat_bank.py to ventricular_beat_bank.cpython-37.pyc
byte-compiling build\bdist.win-amd64\egg\pyfar\ventricular_beat_stdev.py to ventricular_beat_stdev.cpython-37.pyc
byte-compiling build\bdist.win-amd64\egg\pyfar\__init__.py to __init__.cpython-37.pyc
creating build\bdist.win-amd64\egg\EGG-INFO
copying pyfar.egg-info\PKG-INFO -> build\bdist.win-amd64\egg\EGG-INFO
copying pyfar.egg-info\SOURCES.txt -> build\bdist.win-amd64\egg\EGG-INFO
copying pyfar.egg-info\dependency_links.txt -> build\bdist.win-amd64\egg\EGG-INFO
copying pyfar.egg-info\requires.txt -> build\bdist.win-amd64\egg\EGG-INFO
copying pyfar.egg-info\top_level.txt -> build\bdist.win-amd64\egg\EGG-INFO
zip_safe flag not set; analyzing archive contents...
pyfar.__pycache__.parameters.cpython-37: module references __file__
creating 'dist\pyfar-0.1.0-py3.7.egg' and adding 'build\bdist.win-amd64\egg' to it
removing 'build\bdist.win-amd64\egg' (and everything under it)
Processing pyfar-0.1.0-py3.7.egg
creating d:\dvp\false-alarm\env\lib\site-packages\pyfar-0.1.0-py3.7.egg
Extracting pyfar-0.1.0-py3.7.egg to d:\dvp\false-alarm\env\lib\site-packages
Adding pyfar 0.1.0 to easy-install.pth file

Installed d:\dvp\false-alarm\env\lib\site-packages\pyfar-0.1.0-py3.7.egg
Processing dependencies for pyfar==0.1.0
Searching for wfdb>=1.2.2
Reading https://pypi.org/simple/wfdb/
Downloading https://files.pythonhosted.org/packages/b2/96/c2200539fdf4f087e14d30ed62a66544b6f441196bcb8ecc7a29ec6503b9/wfdb-2.2.1.tar.gz#sha256=5225326103efde170b28884d85ee170dbc586c9fbaf0ae1a7126d66e1429677c
Best match: wfdb 2.2.1
Processing wfdb-2.2.1.tar.gz
Writing C:\Users\alex\AppData\Local\Temp\easy_install-dyep5yz_\wfdb-2.2.1\setup.cfg
Running wfdb-2.2.1\setup.py -q bdist_egg --dist-dir C:\Users\alex\AppData\Local\Temp\easy_install-dyep5yz_\wfdb-2.2.1\egg-dist-tmp-yr58v6pi
zip_safe flag not set; analyzing archive contents...
Copying wfdb-2.2.1-py3.7.egg to d:\dvp\false-alarm\env\lib\site-packages
Adding wfdb 2.2.1 to easy-install.pth file

Installed d:\dvp\false-alarm\env\lib\site-packages\wfdb-2.2.1-py3.7.egg
Searching for spectrum>=0.7.1
Reading https://pypi.org/simple/spectrum/
Downloading https://files.pythonhosted.org/packages/24/bd/5c3352f8f7ce47be59bdf45830a99c3d82bf944779d90f693a71f02cdfcb/spectrum-0.7.5.tar.gz#sha256=ae88d51d9b7b9d0a9b0bd8aaef95265cce0c9b21bee1c847a769e60fa0ede870
Best match: spectrum 0.7.5
Processing spectrum-0.7.5.tar.gz
Writing C:\Users\alex\AppData\Local\Temp\easy_install-70o21vw8\spectrum-0.7.5\setup.cfg
Running spectrum-0.7.5\setup.py -q bdist_egg --dist-dir C:\Users\alex\AppData\Local\Temp\easy_install-70o21vw8\spectrum-0.7.5\egg-dist-tmp-ktsz_iys
warning: no files found matching 'L'
mydpss.c
src/cpp/mydpss.c(237): warning C4005: 'min': macro redefinition
C:\Program Files (x86)\Windows Kits\10\include\10.0.18362.0\ucrt\stdlib.h(1290): note: see previous definition of 'min'
src/cpp/mydpss.c(238): warning C4005: 'max': macro redefinition
C:\Program Files (x86)\Windows Kits\10\include\10.0.18362.0\ucrt\stdlib.h(1289): note: see previous definition of 'max'
   Creating library build\temp.win-amd64-3.7\Release\src/cpp\mydpss.cp37-win_amd64.lib and object build\temp.win-amd64-3.7\Release\src/cpp\mydpss.cp37-win_amd64.exp
Generating code
Finished generating code
zip_safe flag not set; analyzing archive contents...
spectrum.__pycache__.mtm.cpython-37: module references __file__
spectrum.__pycache__.mydpss.cpython-37: module references __file__
creating d:\dvp\false-alarm\env\lib\site-packages\spectrum-0.7.5-py3.7-win-amd64.egg
Extracting spectrum-0.7.5-py3.7-win-amd64.egg to d:\dvp\false-alarm\env\lib\site-packages
Adding spectrum 0.7.5 to easy-install.pth file

Installed d:\dvp\false-alarm\env\lib\site-packages\spectrum-0.7.5-py3.7-win-amd64.egg
Searching for sklearn>=0.0
Reading https://pypi.org/simple/sklearn/
Downloading https://files.pythonhosted.org/packages/1e/7a/dbb3be0ce9bd5c8b7e3d87328e79063f8b263b2b1bfa4774cb1147bfcd3f/sklearn-0.0.tar.gz#sha256=e23001573aa194b834122d2b9562459bf5ae494a2d59ca6b8aa22c85a44c0e31
Best match: sklearn 0.0
Processing sklearn-0.0.tar.gz
Writing C:\Users\alex\AppData\Local\Temp\easy_install-6jq_fy2j\sklearn-0.0\setup.cfg
Running sklearn-0.0\setup.py -q bdist_egg --dist-dir C:\Users\alex\AppData\Local\Temp\easy_install-6jq_fy2j\sklearn-0.0\egg-dist-tmp-w2aphlto
file wheel-platform-tag-is-broken-on-empty-wheels-see-issue-141.py (for module wheel-platform-tag-is-broken-on-empty-wheels-see-issue-141) not found
file wheel-platform-tag-is-broken-on-empty-wheels-see-issue-141.py (for module wheel-platform-tag-is-broken-on-empty-wheels-see-issue-141) not found
file wheel-platform-tag-is-broken-on-empty-wheels-see-issue-141.py (for module wheel-platform-tag-is-broken-on-empty-wheels-see-issue-141) not found
warning: install_lib: 'build\lib' does not exist -- no Python modules to install

creating d:\dvp\false-alarm\env\lib\site-packages\sklearn-0.0-py3.7.egg
Extracting sklearn-0.0-py3.7.egg to d:\dvp\false-alarm\env\lib\site-packages
Adding sklearn 0.0 to easy-install.pth file

Installed d:\dvp\false-alarm\env\lib\site-packages\sklearn-0.0-py3.7.egg
Searching for scipy>=0.19.0
Reading https://pypi.org/simple/scipy/
Downloading https://files.pythonhosted.org/packages/50/eb/defa40367863304e1ef01c6572584c411446a5f29bdd9dc90f91509e9144/scipy-1.3.1-cp37-cp37m-win_amd64.whl#sha256=a9d606d11eb2eec7ef893eb825017fbb6eef1e1d0b98a5b7fc11446ebeb2b9b1
Best match: scipy 1.3.1
Processing scipy-1.3.1-cp37-cp37m-win_amd64.whl
Installing scipy-1.3.1-cp37-cp37m-win_amd64.whl to d:\dvp\false-alarm\env\lib\site-packages
writing requirements to d:\dvp\false-alarm\env\lib\site-packages\scipy-1.3.1-py3.7-win-amd64.egg\EGG-INFO\requires.txt
Adding scipy 1.3.1 to easy-install.pth file

Installed d:\dvp\false-alarm\env\lib\site-packages\scipy-1.3.1-py3.7-win-amd64.egg
Searching for scikit-learn>=0.19.0
Reading https://pypi.org/simple/scikit-learn/
Downloading https://files.pythonhosted.org/packages/d6/9e/6a42486ffa64711fb868e5d4a9167153417e7414c3d8d3e0d627cf391e1e/scikit_learn-0.21.3-cp37-cp37m-win_amd64.whl#sha256=928050b65781fea9542dfe9bfe02d8c4f5530baa8472ec60782ea77347d2c836
Best match: scikit-learn 0.21.3
Processing scikit_learn-0.21.3-cp37-cp37m-win_amd64.whl
Installing scikit_learn-0.21.3-cp37-cp37m-win_amd64.whl to d:\dvp\false-alarm\env\lib\site-packages
writing requirements to d:\dvp\false-alarm\env\lib\site-packages\scikit_learn-0.21.3-py3.7-win-amd64.egg\EGG-INFO\requires.txt
Adding scikit-learn 0.21.3 to easy-install.pth file

Installed d:\dvp\false-alarm\env\lib\site-packages\scikit_learn-0.21.3-py3.7-win-amd64.egg
Searching for PeakUtils>=1.1.0
Reading https://pypi.org/simple/PeakUtils/
Downloading https://files.pythonhosted.org/packages/2a/e0/a45948450946a87dae44d936ea7646d862e1014753c496468a05f20e95c5/PeakUtils-1.3.2.tar.gz#sha256=2cf1f609132f0219e2fc9c7e221b62d1c82c9a502ec9a4c1195823423275c954
Best match: PeakUtils 1.3.2
Processing PeakUtils-1.3.2.tar.gz
Writing C:\Users\alex\AppData\Local\Temp\easy_install-ouderane\PeakUtils-1.3.2\setup.cfg
Running PeakUtils-1.3.2\setup.py -q bdist_egg --dist-dir C:\Users\alex\AppData\Local\Temp\easy_install-ouderane\PeakUtils-1.3.2\egg-dist-tmp-25qz9n71
no previously-included directories found matching 'docs\_*'
zip_safe flag not set; analyzing archive contents...
Copying peakutils-1.3.2-py3.7.egg to d:\dvp\false-alarm\env\lib\site-packages
Adding peakutils 1.3.2 to easy-install.pth file

Installed d:\dvp\false-alarm\env\lib\site-packages\peakutils-1.3.2-py3.7.egg
Searching for pandas>=0.20.3
Reading https://pypi.org/simple/pandas/
Downloading https://files.pythonhosted.org/packages/6b/88/672fcbab1fda7c3a2af192daf32885e065ff4046649247cebdc5cf7383a4/pandas-0.25.2-cp37-cp37m-win_amd64.whl#sha256=27c0603b15b5c6fa24885253bbe49a0c289381e7759385c59308ba4f0b166cf1
Best match: pandas 0.25.2
Processing pandas-0.25.2-cp37-cp37m-win_amd64.whl
Installing pandas-0.25.2-cp37-cp37m-win_amd64.whl to d:\dvp\false-alarm\env\lib\site-packages
writing requirements to d:\dvp\false-alarm\env\lib\site-packages\pandas-0.25.2-py3.7-win-amd64.egg\EGG-INFO\requires.txt
Adding pandas 0.25.2 to easy-install.pth file

Installed d:\dvp\false-alarm\env\lib\site-packages\pandas-0.25.2-py3.7-win-amd64.egg
Searching for numpy>=1.13.1
Reading https://pypi.org/simple/numpy/
Downloading https://files.pythonhosted.org/packages/e9/dd/a177f27765b1e5f94fa879cbeef61f8807086371d0b6aa232b836d38b78b/numpy-1.17.3-cp37-cp37m-win_amd64.whl#sha256=0b0dd8f47fb177d00fa6ef2d58783c4f41ad3126b139c91dd2f7c4b3fdf5e9a5
Best match: numpy 1.17.3
Processing numpy-1.17.3-cp37-cp37m-win_amd64.whl
Installing numpy-1.17.3-cp37-cp37m-win_amd64.whl to d:\dvp\false-alarm\env\lib\site-packages
Adding numpy 1.17.3 to easy-install.pth file
Installing f2py-script.py script to D:\dvp\false-alarm\env\Scripts
Installing f2py.exe script to D:\dvp\false-alarm\env\Scripts

Installed d:\dvp\false-alarm\env\lib\site-packages\numpy-1.17.3-py3.7-win-amd64.egg
Searching for matplotlib>=2.0.2
Reading https://pypi.org/simple/matplotlib/
Downloading https://files.pythonhosted.org/packages/bc/83/146ff950c41e82b527bc8641e7a760b5b3399e8934b01bf1b762b7baafc8/matplotlib-3.2.0rc1-cp37-cp37m-win_amd64.whl#sha256=e8dcb5641ec68e3c4f6b3c390296fb01a4d6e78365e76de4fc563ddfeb973589
Best match: matplotlib 3.2.0rc1
Processing matplotlib-3.2.0rc1-cp37-cp37m-win_amd64.whl
Installing matplotlib-3.2.0rc1-cp37-cp37m-win_amd64.whl to d:\dvp\false-alarm\env\lib\site-packages
writing requirements to d:\dvp\false-alarm\env\lib\site-packages\matplotlib-3.2.0rc1-py3.7-win-amd64.egg\EGG-INFO\requires.txt
Adding matplotlib 3.2.0rc1 to easy-install.pth file

Installed d:\dvp\false-alarm\env\lib\site-packages\matplotlib-3.2.0rc1-py3.7-win-amd64.egg
Searching for fastdtw>=0.3.2
Reading https://pypi.org/simple/fastdtw/
Downloading https://files.pythonhosted.org/packages/99/43/30f2d8db076f216b15c10db663b46e22d1750b1ebacd7af6e62b83d6ab98/fastdtw-0.3.4.tar.gz#sha256=2350fa6ec36bcad186eaf81f46eff35181baf04e324f522de8aeb43d0243f64f
Best match: fastdtw 0.3.4
Processing fastdtw-0.3.4.tar.gz
Writing C:\Users\alex\AppData\Local\Temp\easy_install-j0_d7at9\fastdtw-0.3.4\setup.cfg
Running fastdtw-0.3.4\setup.py -q bdist_egg --dist-dir C:\Users\alex\AppData\Local\Temp\easy_install-j0_d7at9\fastdtw-0.3.4\egg-dist-tmp-30ul1m8i
_fastdtw.cpp
fastdtw\_fastdtw.cpp(633): fatal error C1083: Cannot open include file: 'numpy/npy_math.h': No such file or directory
C:\Users\alex\AppData\Local\Temp\easy_install-j0_d7at9\fastdtw-0.3.4\setup.py:85: UserWarning: numpy missing, compilation failed. Installing pure python package
  warnings.warn(reason+'compilation failed. Installing pure python package')
zip_safe flag not set; analyzing archive contents...
Copying fastdtw-0.3.4-py3.7.egg to d:\dvp\false-alarm\env\lib\site-packages
Adding fastdtw 0.3.4 to easy-install.pth file

Installed d:\dvp\false-alarm\env\lib\site-packages\fastdtw-0.3.4-py3.7.egg
Searching for requests>=2.10.0
Reading https://pypi.org/simple/requests/
Downloading https://files.pythonhosted.org/packages/51/bd/23c926cd341ea6b7dd0b2a00aba99ae0f828be89d72b2190f27c11d4b7fb/requests-2.22.0-py2.py3-none-any.whl#sha256=9cf5292fcd0f598c671cfc1e0d7d1a7f13bb8085e9a590f48c010551dc6c4b31
Best match: requests 2.22.0
Processing requests-2.22.0-py2.py3-none-any.whl
Installing requests-2.22.0-py2.py3-none-any.whl to d:\dvp\false-alarm\env\lib\site-packages
writing requirements to d:\dvp\false-alarm\env\lib\site-packages\requests-2.22.0-py3.7.egg\EGG-INFO\requires.txt
Adding requests 2.22.0 to easy-install.pth file

Installed d:\dvp\false-alarm\env\lib\site-packages\requests-2.22.0-py3.7.egg
Searching for nose>=1.3.7
Reading https://pypi.org/simple/nose/
Downloading https://files.pythonhosted.org/packages/15/d8/dd071918c040f50fa1cf80da16423af51ff8ce4a0f2399b7bf8de45ac3d9/nose-1.3.7-py3-none-any.whl#sha256=9ff7c6cc443f8c51994b34a667bbcf45afd6d945be7477b52e97516fd17c53ac
Best match: nose 1.3.7
Processing nose-1.3.7-py3-none-any.whl
Installing nose-1.3.7-py3-none-any.whl to d:\dvp\false-alarm\env\lib\site-packages
Adding nose 1.3.7 to easy-install.pth file
Installing nosetests-script.py script to D:\dvp\false-alarm\env\Scripts
Installing nosetests.exe script to D:\dvp\false-alarm\env\Scripts
Installing nosetests-3.4-script.py script to D:\dvp\false-alarm\env\Scripts
Installing nosetests-3.4.exe script to D:\dvp\false-alarm\env\Scripts

Installed d:\dvp\false-alarm\env\lib\site-packages\nose-1.3.7-py3.7.egg
Searching for joblib>=0.11
Reading https://pypi.org/simple/joblib/
Downloading https://files.pythonhosted.org/packages/8f/42/155696f85f344c066e17af287359c9786b436b1bf86029bb3411283274f3/joblib-0.14.0-py2.py3-none-any.whl#sha256=006108c7576b3eb6c5b27761ddbf188eb6e6347696325ab2027ea1ee9a4b922d
Best match: joblib 0.14.0
Processing joblib-0.14.0-py2.py3-none-any.whl
Installing joblib-0.14.0-py2.py3-none-any.whl to d:\dvp\false-alarm\env\lib\site-packages
Adding joblib 0.14.0 to easy-install.pth file

Installed d:\dvp\false-alarm\env\lib\site-packages\joblib-0.14.0-py3.7.egg
Searching for pytz>=2017.2
Reading https://pypi.org/simple/pytz/
Downloading https://files.pythonhosted.org/packages/e7/f9/f0b53f88060247251bf481fa6ea62cd0d25bf1b11a87888e53ce5b7c8ad2/pytz-2019.3-py2.py3-none-any.whl#sha256=1c557d7d0e871de1f5ccd5833f60fb2550652da6be2693c1e02300743d21500d
Best match: pytz 2019.3
Processing pytz-2019.3-py2.py3-none-any.whl
Installing pytz-2019.3-py2.py3-none-any.whl to d:\dvp\false-alarm\env\lib\site-packages
Adding pytz 2019.3 to easy-install.pth file

Installed d:\dvp\false-alarm\env\lib\site-packages\pytz-2019.3-py3.7.egg
Searching for python-dateutil>=2.6.1
Reading https://pypi.org/simple/python-dateutil/
Downloading https://files.pythonhosted.org/packages/41/17/c62faccbfbd163c7f57f3844689e3a78bae1f403648a6afb1d0866d87fbb/python_dateutil-2.8.0-py2.py3-none-any.whl#sha256=7e6584c74aeed623791615e26efd690f29817a27c73085b78e4bad02493df2fb
Best match: python-dateutil 2.8.0
Processing python_dateutil-2.8.0-py2.py3-none-any.whl
Installing python_dateutil-2.8.0-py2.py3-none-any.whl to d:\dvp\false-alarm\env\lib\site-packages
writing requirements to d:\dvp\false-alarm\env\lib\site-packages\python_dateutil-2.8.0-py3.7.egg\EGG-INFO\requires.txt
Adding python-dateutil 2.8.0 to easy-install.pth file

Installed d:\dvp\false-alarm\env\lib\site-packages\python_dateutil-2.8.0-py3.7.egg
Searching for pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1
Reading https://pypi.org/simple/pyparsing/
Downloading https://files.pythonhosted.org/packages/11/fa/0160cd525c62d7abd076a070ff02b2b94de589f1a9789774f17d7c54058e/pyparsing-2.4.2-py2.py3-none-any.whl#sha256=d9338df12903bbf5d65a0e4e87c2161968b10d2e489652bb47001d82a9b028b4
Best match: pyparsing 2.4.2
Processing pyparsing-2.4.2-py2.py3-none-any.whl
Installing pyparsing-2.4.2-py2.py3-none-any.whl to d:\dvp\false-alarm\env\lib\site-packages
Adding pyparsing 2.4.2 to easy-install.pth file

Installed d:\dvp\false-alarm\env\lib\site-packages\pyparsing-2.4.2-py3.7.egg
Searching for kiwisolver>=1.0.1
Reading https://pypi.org/simple/kiwisolver/
Downloading https://files.pythonhosted.org/packages/c6/ea/e5474014a13ab2dcb5056608e0716c600c3d8a8bcffb10ed55ccd6a42eb0/kiwisolver-1.1.0-cp37-none-win_amd64.whl#sha256=d3fcf0819dc3fea58be1fd1ca390851bdb719a549850e708ed858503ff25d995
Best match: kiwisolver 1.1.0
Processing kiwisolver-1.1.0-cp37-none-win_amd64.whl
Installing kiwisolver-1.1.0-cp37-none-win_amd64.whl to d:\dvp\false-alarm\env\lib\site-packages
writing requirements to d:\dvp\false-alarm\env\lib\site-packages\kiwisolver-1.1.0-py3.7-win-amd64.egg\EGG-INFO\requires.txt
Adding kiwisolver 1.1.0 to easy-install.pth file

Installed d:\dvp\false-alarm\env\lib\site-packages\kiwisolver-1.1.0-py3.7-win-amd64.egg
Searching for cycler>=0.10
Reading https://pypi.org/simple/cycler/
Downloading https://files.pythonhosted.org/packages/f7/d2/e07d3ebb2bd7af696440ce7e754c59dd546ffe1bbe732c8ab68b9c834e61/cycler-0.10.0-py2.py3-none-any.whl#sha256=1d8a5ae1ff6c5cf9b93e8811e581232ad8920aeec647c37316ceac982b08cb2d
Best match: cycler 0.10.0
Processing cycler-0.10.0-py2.py3-none-any.whl
Installing cycler-0.10.0-py2.py3-none-any.whl to d:\dvp\false-alarm\env\lib\site-packages
writing requirements to d:\dvp\false-alarm\env\lib\site-packages\cycler-0.10.0-py3.7.egg\EGG-INFO\requires.txt
Adding cycler 0.10.0 to easy-install.pth file

Installed d:\dvp\false-alarm\env\lib\site-packages\cycler-0.10.0-py3.7.egg
Searching for urllib3!=1.25.0,!=1.25.1,<1 .26="">=1.21.1
Reading https://pypi.org/simple/urllib3/
Downloading https://files.pythonhosted.org/packages/e0/da/55f51ea951e1b7c63a579c09dd7db825bb730ec1fe9c0180fc77bfb31448/urllib3-1.25.6-py2.py3-none-any.whl#sha256=3de946ffbed6e6746608990594d08faac602528ac7015ac28d33cee6a45b7398
Best match: urllib3 1.25.6
Processing urllib3-1.25.6-py2.py3-none-any.whl
Installing urllib3-1.25.6-py2.py3-none-any.whl to d:\dvp\false-alarm\env\lib\site-packages
writing requirements to d:\dvp\false-alarm\env\lib\site-packages\urllib3-1.25.6-py3.7.egg\EGG-INFO\requires.txt
Adding urllib3 1.25.6 to easy-install.pth file

Installed d:\dvp\false-alarm\env\lib\site-packages\urllib3-1.25.6-py3.7.egg
Searching for idna<2 .9="">=2.5
Reading https://pypi.org/simple/idna/
Downloading https://files.pythonhosted.org/packages/14/2c/cd551d81dbe15200be1cf41cd03869a46fe7226e7450af7a6545bfc474c9/idna-2.8-py2.py3-none-any.whl#sha256=ea8b7f6188e6fa117537c3df7da9fc686d485087abf6ac197f9c46432f7e4a3c
Best match: idna 2.8
Processing idna-2.8-py2.py3-none-any.whl
Installing idna-2.8-py2.py3-none-any.whl to d:\dvp\false-alarm\env\lib\site-packages
Adding idna 2.8 to easy-install.pth file

Installed d:\dvp\false-alarm\env\lib\site-packages\idna-2.8-py3.7.egg
Searching for chardet<3 .1.0="">=3.0.2
Reading https://pypi.org/simple/chardet/
Downloading https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl#sha256=fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691
Best match: chardet 3.0.4
Processing chardet-3.0.4-py2.py3-none-any.whl
Installing chardet-3.0.4-py2.py3-none-any.whl to d:\dvp\false-alarm\env\lib\site-packages
Adding chardet 3.0.4 to easy-install.pth file
Installing chardetect-script.py script to D:\dvp\false-alarm\env\Scripts
Installing chardetect.exe script to D:\dvp\false-alarm\env\Scripts

Installed d:\dvp\false-alarm\env\lib\site-packages\chardet-3.0.4-py3.7.egg
Searching for certifi>=2017.4.17
Reading https://pypi.org/simple/certifi/
Downloading https://files.pythonhosted.org/packages/18/b0/8146a4f8dd402f60744fa380bc73ca47303cccf8b9190fd16a827281eac2/certifi-2019.9.11-py2.py3-none-any.whl#sha256=fd7c7c74727ddcf00e9acd26bba8da604ffec95bf1c2144e67aff7a8b50e6cef
Best match: certifi 2019.9.11
Processing certifi-2019.9.11-py2.py3-none-any.whl
Installing certifi-2019.9.11-py2.py3-none-any.whl to d:\dvp\false-alarm\env\lib\site-packages
Adding certifi 2019.9.11 to easy-install.pth file

Installed d:\dvp\false-alarm\env\lib\site-packages\certifi-2019.9.11-py3.7.egg
Searching for six>=1.5
Reading https://pypi.org/simple/six/
Downloading https://files.pythonhosted.org/packages/73/fb/00a976f728d0d1fecfe898238ce23f502a721c0ac0ecfedb80e0d88c64e9/six-1.12.0-py2.py3-none-any.whl#sha256=3350809f0555b11f552448330d0b52d5f24c91a322ea4a15ef22629740f3761c
Best match: six 1.12.0
Processing six-1.12.0-py2.py3-none-any.whl
Installing six-1.12.0-py2.py3-none-any.whl to d:\dvp\false-alarm\env\lib\site-packages
Adding six 1.12.0 to easy-install.pth file

Installed d:\dvp\false-alarm\env\lib\site-packages\six-1.12.0-py3.7.egg
Searching for setuptools==40.8.0
Best match: setuptools 40.8.0
Adding setuptools 40.8.0 to easy-install.pth file
Installing easy_install-script.py script to D:\dvp\false-alarm\env\Scripts
Installing easy_install.exe script to D:\dvp\false-alarm\env\Scripts
Installing easy_install-3.6-script.py script to D:\dvp\false-alarm\env\Scripts
Installing easy_install-3.6.exe script to D:\dvp\false-alarm\env\Scripts

Using d:\dvp\false-alarm\env\lib\site-packages
Finished processing dependencies for pyfar==0.1.0

(env) D:\dvp\false-alarm>


No comments: