Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows (old versions): DLL load failed error #810

Closed
Mark-Booth opened this issue Apr 25, 2016 · 21 comments
Closed

Windows (old versions): DLL load failed error #810

Mark-Booth opened this issue Apr 25, 2016 · 21 comments

Comments

@Mark-Booth
Copy link

Similar to issue #706 the current version of psutil doesn't appear to have windows installers.

If I do pip install --user psutil it gives me a error: Unable to find vcvarsall.bat, but it works fine if I do pip install --user psutil==4.0.0.

@giampaolo
Copy link
Owner

Do you have any idea what's the issue?
On Apr 26, 2016 12:02 AM, "Mark Booth" notifications@github.com wrote:

Similar to issue #706 #706
the current version of psutil doesn't appear to have windows installers.

If I do pip install --user psutil it gives me a error: Unable to find
vcvarsall.bat, but it works fine if I do pip install --user psutil==4.0.0.


You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub
#810

@mrjefftang
Copy link
Collaborator

@giampaolo Looks like you built only half of the wheels for 4.1.0 compared to 4.0.0.

It only gives you the vcvarsall.bat error when an appropriate wheel could not be found and it tries to download/build from source.

psutil-4.0.0-cp35-cp35m-win32.whl (md5) Python Wheel    3.5 2016-02-24  152KB
psutil-4.0.0-cp35-cp35m-win_amd64.whl (md5) Python Wheel    3.5 2016-02-24  155KB
psutil-4.0.0-cp35-none-win32.whl (md5)  Python Wheel    3.5 2016-02-17  152KB
psutil-4.0.0-cp35-none-win_amd64.whl (md5)

vs

psutil-4.1.0-cp35-cp35m-win32.whl (md5) Python Wheel    3.5 2016-03-12  157KB
psutil-4.1.0-cp35-cp35m-win_amd64.whl (md5)

See https://www.python.org/dev/peps/pep-0427/#file-name-convention

The abi tag is cp35m instead of none.

I've run into this issue in the past, it has to do with pip/wheel wanting to use none for the abi tag instead of cp35m (or vice versa)

@Mark-Booth Can you upgrade pip and/or wheel?

python -m pip install -U pip
pip install --upgrade wheel

@jedie
Copy link

jedie commented May 4, 2016

I ran into the same problem with python3 and pip 7.1.2.

...
    building 'psutil._psutil_windows' extension
    error: Unable to find vcvarsall.bat
...
You are using pip version 7.1.2, however version 8.1.1 is available.

Upgrade works:

D:\workspace>py -3 -m venv ".\PyWatchdog"

D:\workspace>call ".\PyWatchdog\Scripts\activate.bat"

(PyWatchdog) D:\workspace>".\PyWatchdog\Scripts\python.exe" -m pip install -U pip
Collecting pip
  Using cached pip-8.1.1-py2.py3-none-any.whl
Installing collected packages: pip
  Found existing installation: pip 7.1.2
    Uninstalling pip-7.1.2:
      Successfully uninstalled pip-7.1.2
Successfully installed pip-8.1.1

(PyWatchdog) D:\workspace>".\PyWatchdog\Scripts\pip.exe" install --upgrade wheel
Collecting wheel
  Downloading wheel-0.29.0-py2.py3-none-any.whl (66kB)
    100% |################################| 71kB 1.5MB/s
Installing collected packages: wheel
Successfully installed wheel-0.29.0

(PyWatchdog) D:\workspace>".\PyWatchdog\Scripts\pip.exe" install psutil
Collecting psutil
  Downloading psutil-4.1.0-cp35-cp35m-win32.whl (161kB)
    100% |################################| 163kB 1.1MB/s
Installing collected packages: psutil
Successfully installed psutil-4.1.0

@giampaolo
Copy link
Owner

I remember I upgraded pip/wheel to their latest versions because we bumped into this issue already so it seems that somehow simply upgrading pip/wheel is not enough. Also I am not sure I understand the nature of the problem. Even worse, my Windows VM is gone so I have to reinstall Windows and the various Visual Studio suites (I feel sick just to think about that lol), and since I will fly to US next Monday I am afraid the issue will remain open for a while unless someone is able to produce the necessary exes/wheels, in which case he/she can send it to me and I will upload them on PYPI.

@giampaolo
Copy link
Owner

Related note: Appveyor (https://ci.appveyor.com/project/giampaolo/psutil) would technically be able to produce exes/wheels, which would be good because it would mean avoiding to install different VS versions, which is a real pain, but I am not sure if and where they get stored. Let's say this is just a personal note to remember to investigate Appveyor in this regard.

@mrjefftang
Copy link
Collaborator

Going back off of distant memory when I ran into this issue, the version of pip/wheel on the build machine is what caused it to build wheels with different abi tags. I believe the older version of wheel would build wheels with an abi tag of none while the newer would use cp35m.

There's an issue in the packaged version of pip/wheel of the Windows Python distribution that only looks for an abi tag of none. Once pip/wheel is upgraded (I don't remember which one fixed the problem), it will install wheels with an abi tag of cp35m.

Also when you create virtualenvs, it would use an old bundled version of pip even if there was a newer one available.

@giampaolo
Copy link
Owner

Ok thanks for the precious input (I don't use virtualenvs BTW).
On May 4, 2016 3:13 PM, "Jeff Tang" notifications@github.com wrote:

Going back off of distant memory when I ran into this issue, the version
of pip/wheel on the build machine is what caused it to build wheels with
different abi tags. I believe the older version of wheel would build
wheels with an abi tag of none while the newer would use cp35m.

There's an issue in the packaged version of pip/wheel of the Windows
Python distribution that only looks for an abi tag of none. Once
pip/wheel is upgraded (I don't remember which one fixed the problem), it
will install wheels with an abi tag of cp35m.

Also when you create virtualenvs, it would use an old bundled version of
pip even if there was a newer one available.


You are receiving this because you were mentioned.
Reply to this email directly or view it on GitHub
#810 (comment)

@giampaolo
Copy link
Owner

I configured AppVeyor which now is able to produce and upload wheels/exes.
It seems the problem is here, when compiling "wheel" package: https://ci.appveyor.com/project/giampaolo/psutil/build/665/job/5mty1wecejf5bxpb#L623

creating build\bdist.win-amd64\wheel\psutil-4.2.0.dist-info\WHEEL
C:\Python27-x64\lib\site-packages\wheel\pep425tags.py:77: RuntimeWarning: Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect
  warn=(impl == 'cp')):
C:\Python27-x64\lib\site-packages\wheel\pep425tags.py:81: RuntimeWarning: Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect
  warn=(impl == 'cp')):
C:\Python27-x64\lib\site-packages\wheel\pep425tags.py:87: RuntimeWarning: Config variable 'Py_UNICODE_SIZE' is unset, Python ABI tag may be incorrect
  sys.version_info < (3, 3))) \

I googled for Config variable 'Py_UNICODE_SIZE' is unset, Python ABI tag may be incorrect which led me here: pypa/pip#3383. As far as I understand the issue is with pip, and it's still not fixed. AppVeyor is using the latest versions of all packages including wheel and pip (8.1.2).

@natefoo
Copy link

natefoo commented May 16, 2016

@giampaolo these are coming from wheel (not from pip), but they're only warnings, and should not affect the actual wheel building. I'll need to apply the changes from pypa/pip#3383 to wheel (although I thought I already had) to suppress the warnings.

@giampaolo
Copy link
Owner

Do the new 4.2.0 wheels (uploaded yesterday) have the same problem? I generated them on AppVeyor (not sure if that made any difference).

@natefoo
Copy link

natefoo commented May 16, 2016

I can't test your Windows wheels but they do all contain the cp* SOABI tags. That said, it looks like the build of Python 2.7 you're using is UCS-2, perhaps that is common on Windows, but most of the Linux world's builds are UCS-4.

@mrjefftang
Copy link
Collaborator

I tried installing via Windows and it attempted a source install.

A quick fix would just be to rename the wheels to have none in the filename instead of cp35m

@giampaolo
Copy link
Owner

Did pip show anything useful in the output before deciding to ignore the wheels and try the source?

@mrjefftang
Copy link
Collaborator

**********************
Windows PowerShell transcript start
Start time: 20160516121726
Username: DESKTOP-7B7KJH5\Jeff
RunAs User: DESKTOP-7B7KJH5\Jeff
Machine: DESKTOP-7B7KJH5 (Microsoft Windows NT 10.0.10586.0)
Host Application: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
Process ID: 4396
PSVersion: 5.0.10586.122
PSCompatibleVersions: 1.0, 2.0, 3.0, 4.0, 5.0.10586.122
BuildVersion: 10.0.10586.122
CLRVersion: 4.0.30319.42000
WSManStackVersion: 3.0
PSRemotingProtocolVersion: 2.3
SerializationVersion: 1.1.0.1
**********************
Transcript started, output file is psutil.txt
PS C:\> python -V
Python 3.5.1
PS C:\> pip -V
pip 7.1.2 from c:\python35_amd64\lib\site-packages (python 3.5)
PS C:\> pip -v install psutil
    Skipping link https://pypi.python.org/packages/38/bf/0b743c8a07265f2ecb203f8e60310571dcae33036aa6ba7aa16e2641ac7a/ps
util-3.0.1-cp27-none-win_amd64.whl#md5=9d1e1763a68fbbf4c62996f0aed741d5 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/39/6c/03ade7ba131b3952d916ed26c277418234bec0c9a5dfad513b9a5bb51046/ps
util-3.4.1.win32-py3.3.exe#md5=4ac53cfcd8c0a86f6ccddd024aafa5ca (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/3a/b9/748bbd0c53c74c682051137830048abd0126ae50e3bf4d5854a0188da143/ps
util-1.1.3.win32-py3.2.exe#md5=bd036542460795e364324884159c21b8 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/3c/0b/648fbaef2a037cc0c05388c0416ba3ca9244c22c4156dba73e4a900540a6/ps
util-3.0.0-cp33-none-win_amd64.whl#md5=3ca23c585a024c111aad96f9e5f43d32 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/3c/4c/d46a8bc865e58b30dcb160772667abf42f854ec4910ee1100e79961035ce/ps
util-0.7.1.win32-py2.7.exe#md5=0820915cb8ccd0cb134a97ed7b84a09f (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/3c/65/f5bd2f8b54f14d950596c0c63d7b0f98b6dc779f7c61ac0dd2e9fc7e5e74/ps
util-2.2.0-cp26-none-win32.whl#md5=e588998d4c9bde34e71cb59226ad8bb7 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Found link https://pypi.python.org/packages/3c/9f/0de622fc62e74f4c154656440c02c8a24a01a997d605a744272eb0d93742/psuti
l-0.6.0.tar.gz#md5=02c8ce33b4f44eb3f4bb9dd4800fe9c3 (from https://pypi.python.org/simple/psutil/), version: 0.6.0
    Skipping link https://pypi.python.org/packages/3e/7a/5d53c99ec66ea86548d95acaf98b32f1cbb761cf2e1fc8ee62d0838f8e24/ps
util-0.6.1.win32-py2.6.exe#md5=446412ad5f02a6844b0179604e9bb8cf (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/3e/a4/5177488368f230acd4708a117c0820fb16843521e2a7a492078a2335bb9f/ps
util-1.1.2.win32-py2.6.exe#md5=00ba55472837ee48c8977351fae4daee (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/3f/c2/f7ec0a70bc58c1918f814001682cca30f4b168f5b46dce913220e625dee6/ps
util-3.1.0.win32-py2.6.exe#md5=016294b622cab7a083efc998746ca679 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/3f/eb/e4115c3ecc189fd345b9a50d521e2ff76990bfb12a91921e93ea6398feef/psuti
l-0.5.0.tar.gz#md5=45223628585f300c1f0a4a3aa3c67ba5 (from https://pypi.python.org/simple/psutil/), version: 0.5.0
    Skipping link https://pypi.python.org/packages/40/47/665755b95ad75e6223af96f2d7c04667f663a53dede0315df9832c38b60d/ps
util-1.2.1.win-amd64-py2.7.exe#md5=7aec92fca9705348d1c8510a56db841a (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/40/b6/a94c6d00ac18f779c72973639b78519de0c488e8e8e8d00b65cf4287bec3/ps
util-2.2.1-cp27-none-win32.whl#md5=dc7193873919b2bbf39c3bca6f0c6c40 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/41/39/6ea85cb0c748aae2943144118f1696004f5a99c54dab1fc635cffbb0d06c/ps
util-4.0.0.win32-py2.6.exe#md5=fd8f9bf7144a2944148ee661c82c9aff (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/42/78/eeacb1210abbe15cf06b9810e84afeabae1f9362abe389e8d5ca2c19df43/ps
util-1.1.1.win32-py2.7.exe#md5=9472fd0200d75aabd6474c3c52695f74 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/42/7d/8e159acbf98eed98b778c244287b295f06411ac9e1903d2d358ba48b1d36/ps
util-0.7.0.win32-py3.4.exe#md5=f370a9408b076fcb4df3072db5e2cf62 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/43/54/f2d3b8845105fe5f55d5f0fde36773ab94fe1e35a0f4a5219adc818d586b/ps
util-3.4.1.win-amd64-py3.5.exe#md5=3b7ce0cf5e99d01afcd74c765d70615b (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/45/33/a50ed3def836cd8fc53ce04d09e50df67a6816fd24a819e8e9c45b93fc74/ps
util-2.1.3-cp33-none-win_amd64.whl#md5=a5cac8df63a33a23c4565f2afb03dabe (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/45/56/3ac0a63799d54cb9b1914214944aed71e49297fb90de92b8d1fe20de3bd8/ps
util-2.1.0.win-amd64-py3.4.exe#md5=905b52bf884192e89b27486df8d779aa (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/46/86/2971b31e2637ddc53adce2d997472cee8d4dec366d5a1e140945b95860d5/ps
util-2.1.2.win32-py2.5.exe#md5=12e931cd3c8d65c3fa4fa1570aea60df (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/46/f3/d50f059d7d297db7335e340333124eac9441c5897bb29223c85ebaa64e7d/ps
util-2.2.1.win32-py2.7.exe#md5=622d41609aa7e17c3812fa9602b94738 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/47/ad/4139c3eaa2ee1da71d071c9b49e8a04ff23f2c71f6fdecc11850b0e7343e/ps
util-0.6.0.win-amd64-py3.4.exe#md5=4c342e5ddae083118fda71addb5d5569 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/48/2d/46ba91df965d4f0af5fd4252ac249ff408f6cb966fe1208396933275246f/ps
util-4.1.0-cp34-cp34m-win32.whl#md5=b738533f349228d34a935c65af955730 (from https://pypi.python.org/simple/psutil/); it i
s not compatible with this Python
    Skipping link https://pypi.python.org/packages/48/6f/2259000fa07a4efcdc843034810eb2f8675ef5b97845912f2265589483f4/ps
util-4.2.0.win32-py3.5.exe#md5=a286b0b02d0417545e8ee581a0043d6b (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/4a/40/e43e412c55f66b57aee3a418f47b05e7bb92db83df93c0c93b00f11f1357/ps
util-0.6.1.win32-py2.7.exe#md5=0f3eefe86605b13802c84399d4455e08 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/4a/66/9b1acf05dba9b9cb012ab3b8ed3d0fd7b01e1620808977fa6f1efe05dee2/ps
util-2.1.3.win32-py3.4.exe#md5=4236f7c291d8b3bf3d106ade28cf8953 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/4a/d6/341767cdc6890adfb19ad60683e66dab3cdde605bc226427c8ec17dbd3f5/ps
util-2.2.1.win32-py3.3.exe#md5=4443b77f6cea12e5f4c26397a50745d0 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/4b/11/f18b29033a0b383e67f664576eca59fbe8552a9fd97f9f22d6d0ff1c4951/ps
util-3.2.1.win-amd64-py3.4.exe#md5=4809d012e8d98e453c41527bf767bd2e (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/4b/77/0fefa732947da69cba7f2580285eff553fe4a416314234f809901bede361/ps
util-4.0.0-cp33-cp33m-win_amd64.whl#md5=aa846302608bc25b720007f6f5d465a8 (from https://pypi.python.org/simple/psutil/);
it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/4c/26/695fa5b3578248f424d9a8e5bf2aafc6f706aeb7ec21ee31a5ebc2f79660/ps
util-3.4.1.win-amd64-py3.3.exe#md5=661a17463eb07b18277949920f13f521 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/4c/51/eb8b12a0124050492faad7fe3e695cb44e4ec5495a64a8570abf6e7cddc3/ps
util-1.0.1.win32-py3.3.exe#md5=fdab69193ac699298ca6be13c3d02415 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/4d/2a/33063e4a674e3be38d77fbc6e5e988f0e0323cd000cb7eb60f9300493631/ps
util-1.0.1.win32-py3.4.exe#md5=96a3911cf3e5041d5ccea14db56de426 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/4d/8a/d51e550aa0928ab02e4f6b2531453b2e63c8877e30543e342c8a35c90d4d/ps
util-0.7.1.win32-py2.6.exe#md5=9790451d3261995e2e40d27dc445defa (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/4d/af/5b8c2471ea942a4b6ee85706e9279284ae9dc86ee30b6f97db2d84a95433/ps
util-3.2.2-cp26-none-win32.whl#md5=86bb9938e137e8e99708a4b3e6806000 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/4d/bc/f49882e8935f147b8922fc8bb0f430fe0e7b0d3231a601cd12e1c0272f77/ps
util-4.2.0-cp35-cp35m-win32.whl#md5=903439f1035ede63fbce11695aa027bc (from https://pypi.python.org/simple/psutil/); it i
s not compatible with this Python
    Skipping link https://pypi.python.org/packages/4e/0a/ab710541d02ff3ce4169a0922e4412952332991c4c39a0ea9df20e9279b0/ps
util-3.1.0-cp26-none-win32.whl#md5=b44de956915b0b250418188e0d12dc24 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/4e/b2/bfdeae58283e0fb09e2c6725c01b9429acbd15917c7ead91c96f2df37d05/ps
util-0.5.0.win32-py2.6.exe#md5=9510c61f0f453abf5100a4cc827917da (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/4f/e6/989cb0b2f7f0ebe3ab0e7144b78db17387810f1526e98498be96fb755fa9/psuti
l-0.6.1.tar.gz#md5=93c1420cb3dac091325a80c9c5ed9623 (from https://pypi.python.org/simple/psutil/), version: 0.6.1
    Skipping link https://pypi.python.org/packages/50/34/7bfc452cb2cd0069a81064db51b484ef135125cf1d246d0ff82c65653c81/ps
util-0.3.0.win32-py3.3.exe#md5=7c2b60b4c3a091ef741b05dcff6b29d2 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/50/be/c4911ae27c944e12183d9ba844ff0eee706b5208f92e4929d8120b79448e/ps
util-3.4.2.win32-py3.3.exe#md5=7ddcf00fed1e14df228f7fbce576391a (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/52/9f/5874f391a300feead5519872395cbb4d4588eace24962150a03cd9b6ffdf/ps
util-4.1.0.win-amd64-py3.4.exe#md5=2b15f31f6fff57025ab6b43adb8ed8d2 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/52/d7/c2e9e0cb21482304e39a7681066c32c50e984f109bcda5929a84af926d70/ps
util-3.4.1.win32-py3.4.exe#md5=e9a50d16159258196aa660c8523ea795 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/53/3f/249ff2e418313f30a6dcc4995966725f72b00493848ffddeb72b506e8e50/ps
util-3.1.0.win32-py3.4.exe#md5=eb4504f7da8493a512a6f038a502a25c (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/53/6a/8051b913b2f94eb00fd045fe9e14a7182b6e7f088b12c308edd7616a559b/psuti
l-2.1.2.tar.gz#md5=1969c9b3e256f5ce8fb90c5d0124233e (from https://pypi.python.org/simple/psutil/), version: 2.1.2
    Skipping link https://pypi.python.org/packages/55/3e/e49b7929b9daf9c3dcf31668a43ba669d22bb8606deca52e6f92cb67324d/ps
util-0.2.1.win-amd64-py2.7.exe#md5=30e791fbdc5efd91df2fae8d038e21a9 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/55/e9/c122a9d2528cc36ff4f2824a714ee6d5da5462e4b6725e6b1c7098142c4a/ps
util-2.1.3-cp34-none-win32.whl#md5=01170728748bfeb806cd1a6b7dde9dab (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/56/2f/c97adcba8f119a23d3580a3a95939c1a37d37d514b304d90912585a85521/ps
util-3.1.0.win32-py2.7.exe#md5=d97c4c18e0b0582cdafeea70657dd377 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/56/67/533833832596e5f8c1fb51d3f94cd110d688579be7af46996cf96ad890e7/ps
util-0.6.0.win32-py3.4.exe#md5=edcbf842ff84ff522c4ea6be3a2aeea9 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/57/e5/c041b08bea32246f53b7cf27b897e882a695f3ea95eb632b384dd35cf41f/ps
util-2.1.2.win-amd64-py3.4.exe#md5=966691e2d81155fa42d5aea8c4c3a4af (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/57/eb/514a71eab624b381473a3df9c3e3a02f5bb15707b12daf02c137271dfd26/ps
util-4.0.0.win32-py3.3.exe#md5=3e7831c350ff46ed3971b8b1aa328479 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/58/20/3457e441edc1625c6e1dbfcf780d2b22f2e9caa8606c3fd8ce6c48104e87/psuti
l-0.2.0.tar.gz#md5=9a3d226673b7d545a0b8f2ea05391b0f (from https://pypi.python.org/simple/psutil/), version: 0.2.0
    Skipping link https://pypi.python.org/packages/58/2d/8b7abb9b6f8956d9a6dfc3b1dffce27efab8c7c0497a6366e7fee444ae53/ps
util-3.2.0-cp34-none-win_amd64.whl#md5=bfb8ff5e75cecad50466f986ee6129d3 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/58/a5/2ccc9f6180ea769005405381f6b0d01fe1268f20cc85877b02c04c27d306/ps
util-4.2.0-cp27-cp27m-win32.whl#md5=0caae8cea2d0ffe3b6ce6d2b25a9271a (from https://pypi.python.org/simple/psutil/); it i
s not compatible with this Python
    Skipping link https://pypi.python.org/packages/59/33/3ccdbec4ef1452758ba80f711af46736717f63d73786744d6251afb68624/ps
util-3.2.2-cp33-none-win_amd64.whl#md5=d69fbf5de44e2bc345c497abc3de8ae5 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/59/3d/25912eb67f01af306d8ec035041c07daa7f783aafa5f4e1dd90de91c4849/ps
util-0.5.0.win32-py3.3.exe#md5=22501361d9c358f40ce6652c08c79dff (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/59/82/51ab7cecaf03c8cbe7eff3b341f6564c3fa80baaa5a37643096cb526cae2/ps
util-3.0.0-cp34-none-win_amd64.whl#md5=2be097c3a548e5f1f9eb93cb821ed8ed (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/59/82/93052d6359addea338c528ebd50254806d62bc2b2d1ad1303c49d85162f9/ps
util-4.0.0.win-amd64-py2.7.exe#md5=23e5a6798d5e6730cc7d129881b671eb (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/5a/b8/66489689c8751acd67bdbc8f37534176a14b63f74e74a229c30b230c8a18/ps
util-1.1.1.win-amd64-py2.7.exe#md5=9d5e49b2c8bbe9ea898c1526d97fd977 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/5b/30/10f3bef7fa284167a3f9bd3862bcba5cc14fb8509f146a2f696ea5265b93/ps
util-4.1.0.win32-py3.5.exe#md5=23c67cfe3187462eb0e494c893bea5ba (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/5b/3f/10449a8a3dfb809fbeae3d853453aafb36376d51f33c46e02b5f0723c620/ps
util-0.6.1.win32-py2.5.exe#md5=d38b1d74e5598cc7c5dacbb4655f3672 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/5b/7f/9334b57597acabaaf2261c93bb9b1f9f02cdfef5c1b1aa808b262f770adb/ps
util-1.2.1.win32-py2.7.exe#md5=c4264532a64414cf3aa0d8b17d17e015 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/5b/c1/003f0071d1e2a4dfe12ac2d66ac14f5a5a93049544c11ac9c78d83d85318/ps
util-1.0.0.win-amd64-py3.4.exe#md5=3cd7194ee73326a619990dbc3cc78025 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/5b/f7/0bad3fc8ff5f226fa933a847b5fb3355562421f0456348747cf18f7137f5/ps
util-1.0.0.win32-py3.3.exe#md5=0adc4d10d63247edc780ecae82abbc40 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/5c/99/d9147b76eea8c185b6cefbb46de73ae880e5ef0ff36d93cb3f6084e50d59/ps
util-1.2.1.win32-py2.4.exe#md5=a1abd2e5204cae138c3d92147d5f391f (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/5d/89/b3bfca24d038b16af09055912e3a5bc35347ebeb0e6af322959b68dbf237/ps
util-3.2.2.win-amd64-py3.3.exe#md5=09e8ff28d15a0850edc1da3a7af1b7fc (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/5d/a0/d624d4f5660a476821fe0d920a4c2e995a23151928b15cc3383379228f15/ps
util-3.2.1.win32-py3.4.exe#md5=1f7d74e4552701ac1527ec063dc23a11 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/5d/a8/e62ec8105350c1e615ac84b084c7c8799d09e0d1b4530d3e68291dca8976/ps
util-3.3.0-cp34-none-win_amd64.whl#md5=29180e3743d522d56812a97e3025bad1 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/5d/cc/7bf8593a60ed54b47def9a49a60b8bc3517d6fef6ee52a229583a5bc9046/ps
util-4.1.0.win32-py2.6.exe#md5=7dbd2defc0feeb05e80261bdee333031 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/5d/e9/69dee6454940bb102fbbcaa1e44b46bfefc4c0bf53e5e3835d3de3ebc9ae/ps
util-2.1.1.win32-py2.5.exe#md5=8550a607cf6cd29608f75223790a4e7a (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/5e/d6/56f2891f6dd56f950866cc39892e5a56e85331d97c39e2634cfc4014f0df/ps
util-1.1.2.win32-py2.7.exe#md5=dbb5cf9becd52e6a1912668c5a527795 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/5f/26/0be35c7f3dc9e78d405ed6be3aa76a9ce97b51e0076db98408a6f2c288fb/ps
util-2.1.1.win32-py3.4.exe#md5=e9fe00a8fa665b5faaefbef280a2b2b1 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/5f/64/b994ed73ab49d5c847d97c47600b539603ebf0d6cfd8d3575b80db7aefb5/ps
util-3.0.1.win32-py2.7.exe#md5=38444c787142f33c4f7b0c5cd0a2dedf (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/5f/bc/a026bbb10a4df4cf458b5d6feabc72a0017e6a4f472898280442ff3f9393/ps
util-0.5.0.win-amd64-py3.4.exe#md5=426b127b0f890bd135d22f8ed077710c (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/5f/fc/5f317fd548909b1bbb111d462c072faf8af3938268f3e7dd3ab2f9181461/ps
util-3.2.0-cp27-none-win32.whl#md5=0326afc573e50d7f9f9fe4f62ebea40b (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/5f/fd/fc06aaf69ad438d1354312c728791a1f571b2c59a49b411128911abf647e/ps
util-0.6.0.win-amd64-py2.7.exe#md5=5fdca82a210e6ee90ec9934e27c1e81f (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/60/97/f9ea4fa7a4914350d15347a6a583c8a185643bb6bd5dc76d13e9d7dfc150/ps
util-3.4.2-cp26-none-win_amd64.whl#md5=c36b1cc397de8c0c1c6a1ca5f91c0067 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/61/04/c447b4d468402bfb10d21995b0eae219c8397c00d9e8a2b209fb032ac1aa/ps
util-0.3.0.win32-py2.6.exe#md5=c69bb8d43482bf762f9069c6c1d33023 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/62/4d/be87c318274ade9d6589e8545dd5d5bb4bcc42e92334d88d948cf8daa36b/ps
util-2.1.2-cp33-none-win32.whl#md5=8f38a8eb010406f068dd932c9a64f357 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/62/4f/89c6ac53e424109639f42033d0e87c4de4ddb610060007c6d5f6081a0fba/ps
util-3.0.0.win-amd64-py3.3.exe#md5=2d43fa51f106bdebe19eff74fbc28caa (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/62/6e/ee3597f32c650f744359e57fd18bcede773dd7465d392dabbb008bc79b48/ps
util-3.2.2-cp34-none-win32.whl#md5=a984de0e324de12b306715a3319af0b5 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/62/c0/1adb11a832d5aab8a984702a4f6fc08e5698fa4bbc8dc6eddac1c711c7ab/ps
util-4.0.0-cp26-none-win_amd64.whl#md5=21c0dc37af28f6961f7ee38710840940 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/63/1e/a510f3f310b5f530336fbc708fb1456bf3e49e3b3d85c31d151b6e389c4f/ps
util-3.2.2-cp27-none-win32.whl#md5=1cc5711b28815abd6f697f08e37103b9 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Found link https://pypi.python.org/packages/64/4b/70601d39b8e445265ed148affc49f7bfbd246940637785be5c80e007fa6e/psuti
l-2.1.1.tar.gz#md5=72a6b15d589fab11f6ca245b775bc3c6 (from https://pypi.python.org/simple/psutil/), version: 2.1.1
    Skipping link https://pypi.python.org/packages/64/8e/0a06028a1ac093402885febf2aeb18093f1d28ae2110c7eb10b43e7554c1/ps
util-3.2.0-cp33-none-win32.whl#md5=11cdfca948ca1dc444543b3d47df33df (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/64/f7/c385e9350abbbb082364596fd4b0066fcb0c51ebc103a7ebf6eb9bc837e9/ps
util-2.2.1-cp34-none-win_amd64.whl#md5=0b15c74654290fe456032d1fc5918da1 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/65/22/f7121341bc75bff65000ecc0c5aad4f2a6d129506c26d5533ade2ca67349/ps
util-3.4.1-cp33-none-win32.whl#md5=a9735586429eb353616edd4180c8a4ba (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/65/ad/e7828797558dd5f209694b02ce079cd3b6beacf6a5175f38c1973c688494/ps
util-0.4.1.win32-py2.5.exe#md5=50dd9d5c2321302969e9b18b8a548c77 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/66/8d/3143623c2f5bc264197727854040fdc02e3175b4ad991490586db7a512ed/ps
util-2.2.0-cp33-none-win32.whl#md5=c89b8821ffea289732efa88f8aaf6f70 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/66/9b/2b58fdab300e5f2a20c3999c485692cfa73cc9d4e50770a19cc871f92743/ps
util-3.4.1.win-amd64-py2.7.exe#md5=abe857be9730c9a1e3f58e9c18484019 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/66/e4/bb85391bb46b607be0578e0a091bc064daeb2d1c2e80aa2dab89260dff00/ps
util-3.2.2.win32-py2.6.exe#md5=8084cbc65645a789defb85d97bca48ca (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/67/94/0dded4aab9c4992bddb311d2ae8fd9a638df5f6039d12a4fe66481f3ea1c/ps
util-2.0.0.win-amd64-py3.4.exe#md5=403c5ffeecabb70b5c07eaf9ba2d59aa (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/68/ee/fc85a707394d1b374da61c071dee12299e779d87c09a86c727b6f30ad9a6/ps
util-0.2.1.win-amd64-py3.4.exe#md5=2eff5b39001451dc4860754cbb2eb747 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/69/5c/be56c645a254ad83a9aa3055564aae543fdf23186aa5ec9c495a3937300b/ps
util-0.2.0.win32-py2.7.exe#md5=c7632667971fb9046705e2c2b669f349 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/69/e4/7e36e3e6cbc83b76f1c93a63d4c053a03ca99f1c99b106835cb175b5932a/psuti
l-0.1.1.tar.gz#md5=5dee4945b2ce2cad662ffa7b6b88b704 (from https://pypi.python.org/simple/psutil/), version: 0.1.1
    Skipping link https://pypi.python.org/packages/6a/d1/0ce316e4346bcae9dd23911366d894eda65875b88ff447ec8f0402ce556b/ps
util-3.3.0-cp26-none-win_amd64.whl#md5=b215354f55ff6b8b88eff4eb7d6d1e52 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/6a/e6/96a4b4976f0eca169715d975b8c669b78b9afca58f9aadf261915694b73e/ps
util-2.2.0-cp27-none-win32.whl#md5=e8b6dca0853655120fc91eb61c408bc3 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/6b/ac/5da840018ce300a258925d4535a55a32b75236d5d777a8de6c3de18e71f3/ps
util-3.2.1-cp27-none-win_amd64.whl#md5=d22dc03cda13a2df61e7ef35d382777a (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/6b/af/9e43a4a4976f1d1291de8be40c848c591c6e48d7e4053a7b26ad88ba750c/ps
util-4.2.0.win-amd64-py2.7.exe#md5=b3a8ae7f780875f4e90ffa619a0926f2 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/6b/fe/51596968f5a6a0970d9424021989f542d5aa715fe21d1a9c6bbbb0e377a9/ps
util-3.1.1.win32-py2.7.exe#md5=da7d790ff07538082c2dd5494fc369b0 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/6c/d1/69431c4fab9b5cecaf28f2f2e0abee21805c5783c47143db5f0f7d42dbec/psuti
l-2.1.0.tar.gz#md5=ba1f51f4c8e2c74cba48cef70b8a5bec (from https://pypi.python.org/simple/psutil/), version: 2.1.0
    Skipping link https://pypi.python.org/packages/6c/e8/49ff1b33e9fa6f7ea1232d40bbef9a453424fbf0421a7c53d9ecb9a896e7/ps
util-4.1.0.win-amd64-py2.7.exe#md5=38df8658e0cc0dbf8a189b3f5dd3f04e (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/6d/05/0e7213e6f0dc71490a523a70e6ab5e7cd5140d87dc93a4447da58c440d6b/ps
util-2.1.0.win32-py2.5.exe#md5=cecdc9f6eb194b11a99eaf447e1ad180 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/6d/41/cf5b54535ea052a32a76a8e8e56af817deb95f4ffde49277a52ded29763b/ps
util-3.3.0.win32-py3.4.exe#md5=acf398116d5c66d6769b2a31f578a5b3 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/6d/8e/7acd4079567fc64e1df12be6faeddf0ee19432445210293594444ea980a6/ps
util-4.1.0.win32-py3.4.exe#md5=a5e5249a03a2b80d0aca4655c4e7b1f5 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/6d/ca/1d5dafae4d7396a825531296b6837b45129b63463b4eb221ac3429eb157d/ps
util-3.0.0-cp34-none-win32.whl#md5=faf9e8151864c184ee8cca14ab311ae1 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Found link https://pypi.python.org/packages/6e/51/56198d83577106bf89cb23bffcb273f923aea8d5ffe03e3fce55f830c323/psuti
l-0.1.2.tar.gz#md5=ca0d9b31c2113790223245b10c545d85 (from https://pypi.python.org/simple/psutil/), version: 0.1.2
    Skipping link https://pypi.python.org/packages/6e/6d/cf51e672eef1f1fbf9efce429d5411d4a2f3aa239e079b82531389562cd2/ps
util-3.3.0-cp35-none-win32.whl#md5=220fbfba1e5c6a466f5181a7000da4a3 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/6e/9e/6c7f5baf2529d9bba563cdff0b81413b5870b0681739318112adecd99ad0/ps
util-0.4.1.win-amd64-py3.3.exe#md5=051a3efea2e761d71412c60ba3f23478 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/6f/52/26cefb84d714ecdf39f6d4ea62af49af731cf55d8937a252226de41d3fb0/ps
util-3.4.2.win-amd64-py2.6.exe#md5=e0e61d402479d0d45f4a824a239c1227 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/6f/97/5e01561cde882306c28e462b427f67d549add65f5fca324bf0bbdf831d21/ps
util-2.1.3-cp34-none-win_amd64.whl#md5=3975ae23d94a7fd9a3f8353c5baab4c7 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/70/5e/b1d4a1d5238497d48112bc27e3448d05a0acb6c8fcd537565724d916e7c2/ps
util-0.6.0.win-amd64-py3.3.exe#md5=1257a2e3387d74f5108648db2786ce81 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/71/1e/af5675d52b426857441c29ad88d4fccfd55d300867ad02531d77991ab661/ps
util-3.3.0.win32-py3.3.exe#md5=1ba8832ea689fce7d883bb9baa248285 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/71/9b/6b6f630ad4262572839033b69905d415ef152d7701ef40aa98941ba75b38/psuti
l-4.1.0.tar.gz#md5=017e1023484ebf436d3514ebeaf2e7e9 (from https://pypi.python.org/simple/psutil/), version: 4.1.0
    Skipping link https://pypi.python.org/packages/71/d7/878b77bad61bd94f4454536e823b6a48cd0af0f23b1506a2c8a49b2578cd/ps
util-4.0.0-cp34-cp34m-win_amd64.whl#md5=87682521b0a675532e36b531498abf17 (from https://pypi.python.org/simple/psutil/);
it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/72/4c/f93448dfe2dec286b6eae91a00c32f1fbf65506e089354c51db76f4efdaf/ps
util-2.1.3-cp26-none-win32.whl#md5=50f6d16c9c67ffad073399cecc91db93 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/72/e2/24700d1a099dcd824ca7305cf439625a457221459494e677e7649a2f228b/ps
util-4.0.0-cp26-none-win32.whl#md5=04d7b6f748dd2d8e2c4c3361bca2fae2 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/73/19/8009828f3cfcf529570822e52988b95ac1c25c90ba4fb96ae570b5c25e66/ps
util-0.7.0.win32-py3.3.exe#md5=a29dabb5c58eb23461020ad36db88b36 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/73/32/6399071b097f1251f6fa12770b30a67d5b3c9c0c76e81eacbb6139e1bf6d/ps
util-4.0.0-cp34-cp34m-win32.whl#md5=ad64dbda690cdd4a1865a4cf79250149 (from https://pypi.python.org/simple/psutil/); it i
s not compatible with this Python
    Skipping link https://pypi.python.org/packages/73/a2/ab4f2fa7ba6f8fc51d9cc9a0bb5ec269860a34574d391e39d20c2dca7b56/ps
util-0.5.1.win32-py3.3.exe#md5=a1e47eb84ed1e5797e4e1a28b2404c7a (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/75/3f/c10ca801aff50ce6ea84f71ce69a32de1b4a1f0439ada94adeccd36e1afd/ps
util-1.0.1.win32-py2.6.exe#md5=980ae0b21adec471355be929060aa718 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/75/f3/296f43c033c0453ebfdf125dc9b8907193e31ffb92256e4b702d16ef8ac1/ps
util-0.2.1.win32-py3.3.exe#md5=ebbf3c33ffa5c84c19c5b3c2f0009ccf (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/76/42/d6813ce55af42553b2a3136e5159bd71e544bda5fdaed04c72759514e375/ps
util-0.2.0.win32-py3.3.exe#md5=97161829ba80a6dea091ea5d87c924b8 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/76/62/fe6f705cb331be5fcc97b268987527dcdb3f3aa104bf830b0ec8bf1e2ad4/ps
util-3.2.1-cp33-none-win_amd64.whl#md5=158b695a58161970e95e24fee39f5a69 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/76/a3/48c0984c0b65be53a9e3e090df0cd5f3e6bddd767c3f8e62cf286be240e1/ps
util-2.0.0.win32-py2.4.exe#md5=70d3cded7bac87016134983069fb3d5f (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/77/04/d5a92cb5c0e79b84294f6c99b9725806921d1d88032e9d056ca8a7ba31c1/ps
util-4.1.0-cp26-none-win32.whl#md5=543d01d91fe390b3606d106f7228094a (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/77/5a/e87efff3e46862421a9c87847e63ebecd3bb332031305b476399918fea4f/ps
util-2.0.0.win32-py3.3.exe#md5=afba489d53f3171727632623e747f41f (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/77/89/8ee72ae2b5e3c749e43a9c1e95d61eceff022ab7c929cdde8a3b7539a707/psuti
l-1.2.0.tar.gz#md5=f8ae906249e65db21f17d873ae07e584 (from https://pypi.python.org/simple/psutil/), version: 1.2.0
    Skipping link https://pypi.python.org/packages/77/a9/ff7c29d2e244f5bdc7654a626cbfcccd401e78df6e9388713f322c7aa7c7/ps
util-4.0.0.win-amd64-py3.4.exe#md5=baa1f3e1bd4fc5b0dd4823fe7c7cbf1c (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/77/f3/6b3742040b634692393faf3a81e6c0e40366c22bc338ad3fc62ed21b157a/ps
util-3.2.2-cp33-none-win32.whl#md5=15645584ee24cff8c194ebd8b3ac4acf (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/78/47/14db8651f9863d301c0673d25fa22b87d13fde2974f94854502886a21fd1/ps
util-2.1.1.win32-py2.7.exe#md5=5d51ac4843a4cc8407d0be0e2d3d0eac (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/78/91/21944fbddafa1bdf7c0c0ed7d9f4043cd8470e36a1f7a9f6e8b4406a8e39/ps
util-0.3.0.win-amd64-py2.7.exe#md5=e81309e9c7b074f5d937715e4998bedb (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/79/9d/154b179a73695ae605856c2d77ab5da2a66ef4819c3c4f97e4ab297a2902/ps
util-2.1.2-cp27-none-win32.whl#md5=545073fd189d1fab9f36d6a573f9d420 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/7a/30/5bb6644318f2279caf5d334f32df19fe4b2bce11ef418af32124e16f8e98/ps
util-2.2.0.win32-py2.7.exe#md5=39faeeec6fa60188193e81f48d5fd31c (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/7a/3c/ce6a447030cdb50cf68a3988337df0c42e52abf45c3adfea3b225760eb70/ps
util-2.1.0.win-amd64-py2.7.exe#md5=db0ee08adb7f00386ee419dcf414d451 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/7a/59/1a9a10238226dbaed24b8d978e9cc743ac143504b3f4ad8f5e3a169e263a/ps
util-3.0.1-cp33-none-win_amd64.whl#md5=f80a0e810a404099d6a3cc691e5abfd5 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/7b/03/d6bff7ff8570f3521a1d7949f03741210f11ba5ba807789d37e185a0a780/ps
util-0.7.0.win-amd64-py3.3.exe#md5=33a593ee23002af589cca61bbdadc8ad (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Found link https://pypi.python.org/packages/7b/58/2675697b6831e6ac4b7b7bc4e5dcdb24a2f39f8411186573eb0de16eb6d5/psuti
l-3.4.2.tar.gz#md5=53d18a5a2aff970d5658c22921c2bbe6 (from https://pypi.python.org/simple/psutil/), version: 3.4.2
    Skipping link https://pypi.python.org/packages/7b/cd/accf3d7e37006bffe7a569e4fc587eb686d275a19a4e8a37a12930a1e2db/ps
util-3.1.1.win32-py3.4.exe#md5=05f47c7c2d2663902b7d0ae080235517 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/7b/e2/2e1078a38189d51409f50af50b598309a2bd84ebe8ca71b79515da915c82/ps
util-4.2.0-cp35-cp35m-win_amd64.whl#md5=c9c915c75ed0d66a8a1f868235cf7522 (from https://pypi.python.org/simple/psutil/);
it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/7c/5b/d9057a158b09c377eab80dae60928f8fe29bdd11635ca725098587981eeb/ps
util-0.4.0.win-amd64-py3.4.exe#md5=2d1507aeea5b3a7c38591cc6e87c3f12 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/7d/38/b719c8867699a71a98e92e61fd1b0f12bad997a9de60bf8f6215184692e8/ps
util-0.4.0.win32-py2.7.exe#md5=cf3a8688c55d926b4b6c662734b57593 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/7d/d1/9e75848da16a5d165e3918540418f3052e6409357bcce91a7342b22d674f/ps
util-0.6.1.win-amd64-py3.3.exe#md5=00560371e14cf186989faffcd48d8fc4 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/7f/3a/4bb24092c3de0a44f2fc1afb7bcaf898f1daba67cba5b9188b0ae6527102/ps
util-2.2.1-cp34-none-win32.whl#md5=85476e6f242935d03af99004904bfec0 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/7f/8b/c9abd21cdc79b70744e169b98be06f0828687dfcac6468ed87455099f88d/ps
util-0.5.1.win32-py3.4.exe#md5=02dde78aaca51e0bf002edf1ad36a05c (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/81/25/cbbb80d1957c28dffb9f20c1eaf349d5642215d7ca15ec5b7015b6a510c8/ps
util-0.5.1.win32-py2.7.exe#md5=82adfe9bbc6fa96418448049ce52e0ee (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/82/ed/ce9c4281fd8a944a725c0f9a5d77f32295777ab22f54b4f706a51d59edd3/ps
util-2.2.0-cp34-none-win_amd64.whl#md5=0cdd1937d11309a6d994466e5c5b991d (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/83/49/ff116fb9981ef04a5aed1c091ace117c214ed752d37be267ea4e2f28efad/ps
util-3.1.1.win32-py3.3.exe#md5=8e518a6a74512d707d12b73ed23af8c6 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/84/6c/7efbe64b42748125e7113a90e48c0da9859b7f0363ac85ca5617decbafee/ps
util-3.2.0-cp27-none-win_amd64.whl#md5=1616c09bafa66ad7929ec90c9bff4377 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/85/38/d9882d4e37f4b791bd949a1f45c620e0f2573bb4048eb16d59d469e97ec6/ps
util-3.4.1-cp26-none-win_amd64.whl#md5=27c7910efdfe1f28599f3471dae44e0d (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/86/50/6303a28a4ab5c9b6b9ef74eef70b141d5bd743ab096c58d225b6212fa057/ps
util-4.0.0.win-amd64-py2.6.exe#md5=f554d560a14db91d62384407053f39e8 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/86/df/007ca575da6ee7cbb015dc00122028ee0c97fc6a0c9e8bc02333753bfd2f/ps
util-1.2.1.win32-py3.3.exe#md5=38f2a4d625b84ede6fd16606ab1af73b (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/88/17/3ba1b45ec63d666c2631f16679adb819564feb775cfd9e774d23e5774a44/ps
util-1.2.0.win32-py2.5.exe#md5=7cfbcae9514fa7598f2672a344205835 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/88/46/a933ab20c6d9b0ca5704b60307b9e80bdc119b759e89b74a2609b4c10eb6/psuti
l-0.4.0.tar.gz#md5=4465196d7a6d0fc4295776ee3e7b43ec (from https://pypi.python.org/simple/psutil/), version: 0.4.0
    Skipping link https://pypi.python.org/packages/88/bd/5e9d566e941e165987b8c9bd61583c58242ef4da12b7d9fbb07494580aff/ps
util-0.3.0.win-amd64-py3.3.exe#md5=37d546e20dd674e73aacbdbdb1ae287f (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/88/bd/843fadc578d62f2888d5a7b4e2a418a28140ac239a5a5039c0d3678df647/ps
util-2.1.2.win32-py3.4.exe#md5=6b8019a4c0fe669411b0f4c109c35b7d (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/88/d4/ca15a913ab43222e308774845317544e765718a9e56bd4efe5b3cedf1fbd/ps
util-3.1.1.win-amd64-py3.4.exe#md5=5a3b299a03e4803c81523e7a5ff65d2c (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/89/82/1070ecb59d83967ddb2ea58b41ba2b9ffa8f3f686a3f49b8d33dc5684964/ps
util-2.1.3-cp27-none-win_amd64.whl#md5=66a4d7177fe052696a25f31bf6baa264 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Found link https://pypi.python.org/packages/89/d8/dc9ce7b8862ab2d86975dd5199791b0ab2b2168fc2389223a216c2da1d45/psuti
l-3.4.2-cp35-none-win_amd64.whl#md5=4f2d85f1dae74d47af9c511795ec2581 (from https://pypi.python.org/simple/psutil/), vers
ion: 3.4.2
    Skipping link https://pypi.python.org/packages/8a/26/15751b500afdd0aea141905d5ba5319c38be41e0ca55a374c02827d1a79c/ps
util-0.5.1.win-amd64-py2.7.exe#md5=3f53ad143ccaaa269fea08f25d4e5f37 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/8a/31/439614cc2ccd6f3ce1d173c0d7c7a9e45be17cd2bf3ae1f8feaaf0a90cee/ps
util-4.1.0-cp27-cp27m-win32.whl#md5=4bc43677c085c31f6cd288c4d52422ec (from https://pypi.python.org/simple/psutil/); it i
s not compatible with this Python
    Found link https://pypi.python.org/packages/8a/45/3b9dbd7a58482018927f756de098388ee252dd230143ddf486b3017117b1/psuti
l-1.2.1.tar.gz#md5=80c3b251389771ab472e554e6c729c36 (from https://pypi.python.org/simple/psutil/), version: 1.2.1
    Skipping link https://pypi.python.org/packages/8a/a4/6dfd46e45d06da1a4d42814dbbdcffe3a4fc7f9b655e1c2919ac960512c2/ps
util-3.4.1-cp26-none-win32.whl#md5=9ba86608fdee848d54a047996864ed5b (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/8b/80/c41382a4f650f47a37300411169b7b248acf0b0925eb92cb22286362c3df/ps
util-1.1.1.win32-py2.5.exe#md5=62615f05d6df2ffc4cf5a34249b18f70 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/8c/3b/bf4d0698153784231768aa79255f1641efde680c4d178ba327546eba69df/ps
util-3.4.2.win32-py2.7.exe#md5=283510b7f4783a5555fae1add11bea0d (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/8c/75/1eeb93df943b70c2e18bf412b32d18af3577da831f2bfe8c7d29f8853a67/psuti
l-0.7.1.tar.gz#md5=68eaa0aadf43e20e8b82e844332d8172 (from https://pypi.python.org/simple/psutil/), version: 0.7.1
    Skipping link https://pypi.python.org/packages/8c/c1/24179e79ab74bde86ee766c4c0d2bb90b98e4e4d14017efeec024caba268/ps
util-2.2.1.win32-py3.4.exe#md5=8eadba440e4a771df94c1c4ed020d15f (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/8d/0d/1a4bfc94f9cc783a510b3fc7efd5a2ef39858b3a2b6ab40a094a1ca8a54d/psuti
l-1.1.1.tar.gz#md5=24430ee6486be2f1a960d9ce4dc87ad0 (from https://pypi.python.org/simple/psutil/), version: 1.1.1
    Found link https://pypi.python.org/packages/8d/b3/954de176aa8e3a7782bae52ce938f24726c2c68d0f4c60d159271b6b293d/psuti
l-3.1.1.tar.gz#md5=b34360627efb429cb18a4a3143b18c8c (from https://pypi.python.org/simple/psutil/), version: 3.1.1
    Skipping link https://pypi.python.org/packages/8d/e1/22650079452725e44ec790c3e75282f4d341f359b213b2afc7f2ada46930/ps
util-1.1.2.win32-py2.5.exe#md5=cdd8d0bcad9d7446785c50da10a18b27 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/8e/7a/8ba0c9da039b5733edbe17321f0546f08a7066861ffcdb83c31eb061e8f1/ps
util-3.4.2-cp33-none-win32.whl#md5=ced3ccb1c80e90fdf8a60ad6a2a704a3 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/8e/86/8f1e1c0ffc0530dca5e71777f04fb90833c92d3ffc1d075b8b546874eae5/ps
util-3.2.2.win32-py3.3.exe#md5=4432ab7a3dce090ece45d73b51c7aaaf (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/8f/0d/3e9cf8abb62d7241531019d78abaa87a19f3fcc017bfb9c2058ba61e8cf1/ps
util-4.0.0.win32-py2.7.exe#md5=ead45d71b71b1c5928e9c16a028a877b (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/8f/0e/9b3eedad9ea2aa8e51c3ca6aa6485c0ec85bfc73925fbd4d82bbe03ead18/ps
util-3.4.2.win-amd64-py3.4.exe#md5=6b34ef859fed9f1ce1d85580c66e38aa (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/8f/c9/231df338b0cef518dbde2f98c1e0bb81142dc7dbec4a39267bb60dde1462/ps
util-1.1.0.win32-py3.2.exe#md5=61aa580eb72167acc409030c6f14f93f (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/90/49/3726db12f0fa7ff8f7e5493cc128ee6b40f5720f7397a4ef01db9e28dd7b/psuti
l-3.3.0-cp35-none-win_amd64.whl#md5=b469cb8360d0ff2b803e7210477a6f47 (from https://pypi.python.org/simple/psutil/), vers
ion: 3.3.0
    Skipping link https://pypi.python.org/packages/90/97/0a34c0e98bb794f0fc19f0eae13d26fbf39583c768a9a6c614c917135c00/ps
util-4.1.0-cp27-cp27m-win_amd64.whl#md5=ab1ce766f282ab4246fd00f78a6f72b4 (from https://pypi.python.org/simple/psutil/);
it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/91/73/1f55b4a19db535759fec5fdbdd0653d7192336557078e3ac9085d7d77cd1/ps
util-3.3.0-cp27-none-win32.whl#md5=3639fc6e770a1acfe1fe5efff025fb8a (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/91/75/c20c3b9f4d3feb3436d607f498744e46dd28b265b8a72509812322198c7c/ps
util-3.3.0-cp26-none-win32.whl#md5=948b9cce38e3aee8828977ccaa6dd27b (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/92/14/90b9a4690f04ef1aab89a97a7b5407708f56785ccc264d9f9ce372feaea4/ps
util-1.1.1.win32-py3.2.exe#md5=df43ff58f0089d1542ffba7ca1e1d536 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/93/64/1432ca27dfd7102a6726161b79b15a2997f461d3835867271a6c1e3353f7/ps
util-2.1.3.win32-py2.7.exe#md5=57ded53eb8082c438f626c9e0de3357a (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/93/fa/1f70b7fcdff77348f4e79d84cc9b568596874ca34940ede78c63d503a095/psuti
l-1.1.3.tar.gz#md5=845806dcd0b954144b2451f696db85b0 (from https://pypi.python.org/simple/psutil/), version: 1.1.3
    Skipping link https://pypi.python.org/packages/94/37/dc09e24aa80016ddeaff235d2f724d8aac9813b73cc3bf8a7fe3d1878315/ps
util-4.0.0-cp27-none-win_amd64.whl#md5=cd404dc2052d6d3ad9a8d30a9f3140ac (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Found link https://pypi.python.org/packages/94/50/7c9e94cf6cdbf4e4e41d2e318094c2b0d58d3bb9196017fb6e4897adf277/psuti
l-1.0.1.tar.gz#md5=823455a93ff85f284cef0716d1c7a8ce (from https://pypi.python.org/simple/psutil/), version: 1.0.1
    Skipping link https://pypi.python.org/packages/95/82/1f52f8aaa37e07da54da4468c031f59717d3f40cd82b6faaf8f203d84bd7/ps
util-0.6.1.win-amd64-py3.4.exe#md5=4314014183950f0ba2dbcf33face67d9 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/97/03/b9485635cb38dfad854754625422a49f434f53f214bff4885580f0fb21e6/ps
util-4.0.0-cp33-none-win_amd64.whl#md5=250f56f9de0eb1c9ef1acb57aa5f4b28 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/97/27/e64014166df9efc3d00f987a251938d534d3897d62ef21486559a697a770/ps
util-2.2.1.win-amd64-py2.7.exe#md5=41f4884c08715b9d1f20189234792056 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/97/30/094bb08295e15e05a266fcb15c116912f643fbb4dd8090ec64aca801ea72/ps
util-1.0.1.win-amd64-py3.3.exe#md5=dc732ca3af2fe96d8cace2e5e167240f (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/99/4e/8c1f5db3e90dbdbde891c34fd2496805a93aa279433bac716098efad1b4c/ps
util-1.0.0.win32-py2.7.exe#md5=a96dea346d481c971c4ea191bf7c1348 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/99/67/980b4a9257abaa3f53a60a3441f759301a0aca2922d60e18a05d23fb1b0e/ps
util-3.0.1.win32-py2.6.exe#md5=75ec39db17af6ed408581e51c3f0f24c (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/9a/bb/cb19a41fa75a2205ac2d337be45183f879aa77e60bbb19387c872c81d451/ps
util-0.6.1.win-amd64-py2.7.exe#md5=ea6760e5793f2b57cbbce5723cc383b6 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/9a/c1/075598067efefe25f6a2b0cf1b3eb896322597ee64ba097cc6611b89ada7/ps
util-3.2.1.win32-py2.7.exe#md5=151f8ae32aaa086f37d13bd62dcca348 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/9b/62/03133a1b4d1439227bc9b27389fc7d1137d111cbb15197094225967e21cf/psuti
l-0.2.1.tar.gz#md5=7b37fdc61aba1fba38dfff01cb4b98cc (from https://pypi.python.org/simple/psutil/), version: 0.2.1
    Skipping link https://pypi.python.org/packages/9c/0d/f360da29c906dafd825edccc219e70dab73370ad2c287fa5baa9f7fa370b/ps
util-2.2.0.win32-py2.6.exe#md5=80bb19f113f37387974c9319ffdc8006 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/9c/2c/d4380234ddc21ecfb03691a982f5f26b03061e165658ac455b61886fe3ff/psuti
l-2.0.0.tar.gz#md5=9ee83ff3d68396f91ebdf71ae83b152d (from https://pypi.python.org/simple/psutil/), version: 2.0.0
    Skipping link https://pypi.python.org/packages/9c/d1/598bcaa9701e06561cb8823a7a04ee44e702b0e327ef0a65bdd97b019613/ps
util-1.2.0.win-amd64-py2.7.exe#md5=b2abcb587cc351eb6dbc23eed4304cc4 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/9d/1a/b8e679a7e47229d07e41439a43fc1be48c0d34774e5e35ad6730398485bd/ps
util-1.2.0.win32-py2.7.exe#md5=8e2899592e03cb5564b81062e21a706a (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/9d/a4/815181cacd33f0ce62a3c3aa188af65bd3945888aa2f6c16a925837ca517/ps
util-3.0.1.win-amd64-py2.7.exe#md5=0e3bc3eb028c5be97ad79b6a98fd5666 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/9e/34/53e1e85df97508df1b3eea711ab2809cc8f01b20e3b2341645673eb5d835/ps
util-3.4.1.win32-py2.6.exe#md5=ed082a28094592ada0a4e3c0ce467969 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/9e/6f/a946eeb3c6b8848fcf6d21c52884e2639e7d4393b51f330d4555ec177e83/ps
util-0.7.0.win32-py2.5.exe#md5=267c07ccb83cbc8a3f228647943fc1b5 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/9f/45/d2dfa6bdd9b64bfd46ad35af774c3819e0d5abf23a99d51adf11984ca658/ps
util-2.1.1.win32-py2.6.exe#md5=4be430905dd5b146ff5d9d255dcb7eab (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/a0/8a/b9352e0daf69b501296715e0fca1b49d861130eb66156ce3b12aeeb039e4/ps
util-4.0.0-cp33-cp33m-win32.whl#md5=9e3ee633a09350d0baca79aa610698e9 (from https://pypi.python.org/simple/psutil/); it i
s not compatible with this Python
    Found link https://pypi.python.org/packages/a0/cd/00550e16a2a0357a9c24946160e60fc947bbe23bc276aff1b4d3e7b90345/psuti
l-0.4.1.tar.gz#md5=5e29907cec9d341237ca271c569bf492 (from https://pypi.python.org/simple/psutil/), version: 0.4.1
    Skipping link https://pypi.python.org/packages/a2/ab/d15a34c6b9090d58601541f8f5564f5b48d01e82f56e07593be969d529e7/ps
util-3.3.0-cp27-none-win_amd64.whl#md5=f4f09a12cbb0c97e1ea335c4750ae182 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/a2/fe/40b7d42057c5e68ff4c733b5689e9ae9d8785f13576326ba44371689eff7/ps
util-2.2.1-cp33-none-win32.whl#md5=718afd5e0bc6fbb0c7fcb6b751757815 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/a3/a9/b3f114141a49244739321f221f35c300ac7f34ec9e3a352ea70c9fae41f8/ps
util-2.1.1.win-amd64-py3.3.exe#md5=cc5e2d00300c31f90be903a28edd8c00 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/a4/ba/4b54baace7b49b73df74b54815337878137d25fda506e518f2d8dd2472fc/ps
util-1.2.0.win32-py2.4.exe#md5=9e4ed2aa084710da66f3cce1ae80e830 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/a5/06/3ca1c85b733ceaced144cb211c1fc40a6b3b1c4f7a109bbb8e19fe09eac0/ps
util-0.4.0.win-amd64-py2.7.exe#md5=8702738009d71042084ae4f66fdf98f7 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/a5/40/d307abd2ee3015e38cbeeac18c6b0f091cdcac496688f4d2c286145fdc5f/ps
util-1.0.1.win32-py2.5.exe#md5=aac9f8b378cca2616cee6c3cd8f04a30 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/a5/56/c64187a9a6889e622f7ec687254cdb3cc3c706e11bba9244e6ac781ecf38/psuti
l-3.4.1.tar.gz#md5=237098fa24d25680f52659bdd721e8a9 (from https://pypi.python.org/simple/psutil/), version: 3.4.1
    Skipping link https://pypi.python.org/packages/a5/be/6f3b8f8ff89eaf480f59bbcd3d18c10ee0206891aa5fb4a25280c031801c/ps
util-1.1.0.win-amd64-py3.2.exe#md5=a4f7b7462ee820432281b83f5c97aed0 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/a6/88/cc912d38640ddf3441db1f85f8ff8a87f906056554239a4a211970cf6446/ps
util-2.1.2.win-amd64-py2.7.exe#md5=b25dece2dfb0e90938580dfdb2778eff (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Found link https://pypi.python.org/packages/a6/bf/5ce23dc9f50de662af3b4bf54812438c298634224924c4e18b7c3b57a2aa/psuti
l-4.2.0.tar.gz#md5=713f259f917a0c26acfbb7e6ae632ef7 (from https://pypi.python.org/simple/psutil/), version: 4.2.0
    Skipping link https://pypi.python.org/packages/a7/03/80f426e186dfdb202128c78b421b3ba34de461c32f6ed2c04041fc548d7b/ps
util-1.1.0.win32-py3.3.exe#md5=307645ba76f48c1c18a312e1bdf3c1a4 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/a7/63/fd5770ec4fe87d30bd836989d314b85662c775a52dbd017747fc69fe8f0e/ps
util-1.1.2.win32-py2.4.exe#md5=6a7860c16ada71363a9a109be27ec19a (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/a7/64/ba4601de7df6130c27f42bcec9f11da4ea905eda26d2f5a41efdb481f377/ps
util-1.1.1.win32-py3.3.exe#md5=c2ca56d442b556b38c0da9c81bc1f261 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/a9/1b/c90c802a6db438aeebac412ac3ecf389022f4fd93abef9c0441358f46a71/ps
util-4.2.0.win-amd64-py3.5.exe#md5=77185513a3a177ebd1a4fc9c80db4449 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/a9/1e/8ad399f44f63de6de262fc503b1d3f091f6a9b22feaf3c273ee8bb7a7c38/ps
util-0.2.1.win32-py2.7.exe#md5=653dcca878242058ce227dbe51230274 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/a9/28/ac3c9da11fbe1ae3ddefb2cb6b410c8ad701f39d86489931e87c871cc4d1/ps
util-1.0.1.win-amd64-py2.7.exe#md5=f407a0a469633031d6a7d09831ff739b (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/a9/c1/7642d44312cffaa1b3efc6ac5252b7f1ab1c528903b55d56d7bd46805d92/ps
util-3.3.0.win-amd64-py2.6.exe#md5=9d77c76d5b8c7507e2f56edcb4a6e8c9 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Found link https://pypi.python.org/packages/aa/06/6ebc13a14c0961d7bb8184da530448d8fc198465eb5ecd1ad36c761807d2/psuti
l-0.5.1.tar.gz#md5=228cc2ca0c870ca61bca6a1bff36615e (from https://pypi.python.org/simple/psutil/), version: 0.5.1
    Found link https://pypi.python.org/packages/aa/5d/cbd3b7227fe7a4c2c77e4031b6c43961563a3ecde2981190e5afe959be51/psuti
l-3.0.1.tar.gz#md5=037dc67b7902d10f49f6fa5404a73a24 (from https://pypi.python.org/simple/psutil/), version: 3.0.1
    Skipping link https://pypi.python.org/packages/ac/cf/6241dd597ef4f995ab8e29746c54890c1acbb322484afed05aa8988118e1/ps
util-4.1.0-cp33-cp33m-win_amd64.whl#md5=8e9923d273055dcb1b2b07ed9c1af525 (from https://pypi.python.org/simple/psutil/);
it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/ac/eb/f6923ea1b46803251f2bb42ad9b8ed90f4b8d04cdb2384c9ea535193e4f7/ps
util-0.4.0.win-amd64-py3.3.exe#md5=b8f0766413d6d890a07ed5e2db72b766 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/ad/8c/37599876ea078c7c2db10d746f0e0aa805abcacbab96d1cf5dfb0465c40b/ps
util-1.0.0.win32-py2.6.exe#md5=7024e5ffe30cb876ae1a5bbcc776b189 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/ad/ea/d7c41ad9fab6e89263225c66971f9807a0396925dddf7c20901b637b99e2/ps
util-3.3.0.win32-py2.6.exe#md5=cfc41706e53fc4efa4503a8738a30d00 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/ae/4a/e62000dbe462270c30f1e2f2dcc913596f70e264d9a656f881bb9f487283/ps
util-1.2.0.win32-py2.6.exe#md5=49fa4501b0aad2fff6eb6f5600ff06c3 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/ae/71/c68af8e9b05144de969da58e1bf5ebfe0859b1c83b827e05ae3116178bb1/ps
util-3.3.0.win-amd64-py3.4.exe#md5=f5eb382e24b3fcc37a4b1054eb5fdb9e (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/ae/8c/751f1e2fdcaa0ea817a8529468dca052b5de55033ee8539b996497b5be0e/ps
util-0.2.1.win32-py3.4.exe#md5=e2ae3b366854863d01e58af1f57f336d (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/ae/c5/2842c69c67ae171f219efa8bb11bddc2fcec2cea059721e716fe4d48b50c/ps
util-1.2.1.win32-py3.2.exe#md5=026a1043f461c9fa7f1fc4e82b754ba3 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/b0/08/1944d2281986237cdaeabfa36195f44dc4c847d5c4fda3523b44c6823e19/ps
util-0.3.0.win32-py3.4.exe#md5=4c5448e41b112fff3283eecfb117d506 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/b0/84/a9edadc49ef3dbb89298855ae069b18ec534ca9f79a9294de417b8e46571/ps
util-3.4.1-cp33-none-win_amd64.whl#md5=7ea441315caa1495e171ee68cea34269 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/b0/97/ba13c3915aba7776bb0d23819c04255230c46df1f8582752f7e0382c0b67/ps
util-2.1.2.win32-py3.3.exe#md5=7f82bd1d027fa5a2940e9881457a31d2 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/b1/15/3f657d395213ad90efed423c88f1cb2f3b0a429d12bdea98a28c26de7ff4/ps
util-2.1.3.win-amd64-py3.4.exe#md5=8cabfc1a3b36c100d06e6e876c2b565d (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/b1/9c/a9cd75c8cfbac44397a2ca76430229c5496b21e0ab93cba5987d80e3f262/ps
util-3.3.0-cp33-none-win_amd64.whl#md5=2ea7b73762622575a710be3bb8766de3 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/b2/7e/c42d752b333c5846d88a8b56bbab23325b247766c100dc6f68c6bc56019d/ps
util-1.1.3.win32-py2.6.exe#md5=c265fab797f5e4011e2d7f24704cdecb (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/b2/9c/b2c4373b9406eaf33654c4be828d9316ee780f4b3c19d0fa56f55eb64d61/ps
util-3.0.1-cp33-none-win32.whl#md5=9de9aff3cfc9a53ee9fb6853260ef2df (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/b4/56/78f182bf9c81a978067ba5447eca2ea70ef2bc9ac94228adfae5428cd108/ps
util-0.4.0.win32-py2.6.exe#md5=dd0566cc89c6723c23ad2e01b81c19ef (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/b4/8e/028b849600447c45c20582d7ddae1e39d31b83799289f54f1b79af664295/ps
util-0.4.0.win32-py3.4.exe#md5=9baaa984711eb3220e7718c93b22fa9b (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/b5/16/dd5a768773cb017c4a66d69ec49abdd33df831215418e4c116639ed41afb/ps
util-1.1.0.win32-py2.5.exe#md5=dbfbe0a27234281add0ba0a7bda988c0 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/b5/a5/cf96f9f13f9e20bdb4cd2ca1af2ddd74f76fea4bbfb8505c31a5900b38d2/ps
util-4.1.0-cp26-none-win_amd64.whl#md5=ac270a1b46d7c39d28bbdc82c69a06bb (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/b5/d9/9a15af2703d8a0d7b685511df811fc4930b12d7b85b96573e843a0ba1067/ps
util-3.4.2.win32-py3.4.exe#md5=844ff48e4fb64fc7394263bacc0a0e60 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/b6/cd/59a87e4f10181ee228c4edc7d4927e3d62f652cff9f25f95a7e7e9ab3df0/ps
util-3.4.1-cp34-none-win32.whl#md5=befc938c8f9e796e09606f6c3b0698ec (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/b6/fc/7f2ceac523bb5ce9ea93bd85806ebb2d5327f0e430cbb6e70d32e4306e1d/ps
util-2.1.3-cp33-none-win32.whl#md5=c6a3ec90f8b7ef5b52affaedd53571a7 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/b9/41/68b5fc38b97e037ef55e6475d618c079fe2b5d148f5e3fda795c21d888a7/ps
util-2.1.2-cp34-none-win_amd64.whl#md5=eff913925c955ab66a19694397ba1320 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/b9/be/b8938c409231dab07d2954ff7b4d1129e725e0e8ab1b016d7f471f3285e9/ps
util-4.0.0.win32-py3.5.exe#md5=40c3a29e8a5df848d5546fd6728505a1 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/ba/18/c5bb52abb67194aabadfd61286b538ee8856c7cb9c0e92dd64c1b132bf5e/psuti
l-3.0.0.tar.gz#md5=6973529e03e6fc53d9b1a546e947ad1a (from https://pypi.python.org/simple/psutil/), version: 3.0.0
    Skipping link https://pypi.python.org/packages/ba/27/f55ca7d15af50e731e9bbbff9b22fc31a40b786c02f85d173568e5084152/ps
util-3.2.1-cp27-none-win32.whl#md5=e1ab7661aabe174a3b5b69d6f23a0c01 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Found link https://pypi.python.org/packages/ba/e4/760f64a8a5a5f1b95f3ce17c0d51134952f930caf1218e6ce21902f6c4ab/psuti
l-2.2.0.tar.gz#md5=b8f5ce3c47edc5e4491ef05a61387116 (from https://pypi.python.org/simple/psutil/), version: 2.2.0
    Skipping link https://pypi.python.org/packages/bb/cf/f893fa2fb0888384b5d668e22b6e3652c9ce187e749604027a64a6bd6646/ps
util-3.0.0-cp27-none-win32.whl#md5=a76dd91f0ee0de278565d6169186aad8 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/bb/de/8e1f8c4ea6035d08e3c87a0cfc8af6f2862da21697c16d1d17311e095117/ps
util-4.1.0-cp33-cp33m-win32.whl#md5=259d0102ded460ee6ea85117df8bcdf8 (from https://pypi.python.org/simple/psutil/); it i
s not compatible with this Python
    Skipping link https://pypi.python.org/packages/bb/e0/f8e4e286bf9c075f0e9fb3c0b17cecef04cda5e91f4c54982b91b3baf338/ps
util-3.3.0.win-amd64-py2.7.exe#md5=96f9e370d229f05310329d5bb6b55f2e (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/bc/52/ab3c88a0574275ec33d9de0fe7dc9b1a32c573de0e468502876bc1df6f84/ps
util-2.1.2-cp33-none-win_amd64.whl#md5=e4ee3aa1cde7d58e4a9ee35e75d6e778 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/bd/08/112807380b8e7b76de8c84f920234a0ebed35e6511271f93f900f691a10c/ps
util-2.2.0-cp33-none-win_amd64.whl#md5=be765be2c56fb82b7e3e674c142dbeae (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/bd/14/a67db75c827761bf55a50c6ce455cdf0fd7e75d1c7c395b7283359676288/ps
util-3.3.0.win-amd64-py3.5.exe#md5=aa225b260a99c11e139d6a26437ddc35 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/bd/a0/5087d4a5145326a5a07a53ed4f9cd5c09bf5dad4f8d7b9850e6aaa13caa2/ps
util-1.2.1.win32-py2.5.exe#md5=6408652cd4b72ba34500823ba5133ee9 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/bd/a7/888e9fa42c8d475de7b467b9635bb18ed360cb1c261bcf59f5f932d624ea/ps
util-2.1.3.win-amd64-py3.3.exe#md5=12b7e7ddb7ef0e8f22bd86a3fb579eef (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/be/b7/999dcbee8cc5ae32e64b2d0c9d588a3f5a441a07404772af83e86f3c8bc7/ps
util-3.4.2-cp26-none-win32.whl#md5=3d238cf86f9be46eda4e4038079b34c5 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/bf/fa/7f0eda490dd5480bb8e6358f9e893fe7f824ec3a5b275b069708272d2260/ps
util-4.1.0.win32-py2.7.exe#md5=e21cf11ff7600d01391a38f24012a695 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/c0/96/8197557cbebb16be1cfd3c87f1d0972bd2e5b0733b21d0e5d890541634e8/ps
util-4.2.0.win32-py3.3.exe#md5=4c49437c9e1ef8820924e39ca354fef8 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/c0/b1/70868328ddf2cfcde201136bdaf4c9f7fabf868890bc91694fd5fa0fbc19/ps
util-4.1.0-cp34-cp34m-win_amd64.whl#md5=c4a586792f34d3761564c66cbe639657 (from https://pypi.python.org/simple/psutil/);
it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/c0/bb/ed28c191c4d9f27b60d9ea6bd7774b44d78778f0b1fb507ee1e789a490d7/ps
util-3.2.1.win32-py2.6.exe#md5=04d36f7b54b161aeb7b0ae5832a87943 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/c2/dd/5fdd5fd6102ae546452a5f32a6f75ec44c11d6b84c188dd33cfe1e2809e1/ps
util-2.2.1.win-amd64-py3.3.exe#md5=80abc81e1f9172f5c9bec223a5c731bb (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/c3/10/c0e1b505d7d2b4a7f3294c1b4b2bc2644a4629462d777fe2cdcd57b1debe/ps
util-2.0.0.win-amd64-py2.7.exe#md5=906f8c77c3d41fc62fdc51e61c2438b8 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Found link https://pypi.python.org/packages/c4/3b/44bcae6c0fc53362bb7325fde25a73b7fd46541b57c89b7556ca81b08e7e/psuti
l-4.0.0.tar.gz#md5=6f327b7cc813ad6d4584be54ac89bae8 (from https://pypi.python.org/simple/psutil/), version: 4.0.0
    Skipping link https://pypi.python.org/packages/c4/80/35eb7f189482d25e3669871e7dcd295ec38f792dc4670b8635d72b4f949a/ps
util-2.0.0.win32-py3.4.exe#md5=cdbdda0e4cd4ce8912443e1c2ce32a8c (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/c5/1f/5038a2567f5853ea1e0fb55f795c30b339a318717573c5b0c85b8814d733/ps
util-3.3.0-cp33-none-win32.whl#md5=b1c577f9f3e1f0da934d9ee873f6fedd (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/c5/3e/47adda552a79480e2a5d38a2f90144ab4e7ea34eba2b707523cdd1c65fc6/ps
util-4.1.0.win-amd64-py3.3.exe#md5=83da598330d52da76132be4698a5a380 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/c5/af/4ab069ba93a037a4acf9bb84248daa44204a46687abc6a9f3a82ad8c5ee2/ps
util-3.2.1.win-amd64-py2.7.exe#md5=272e5654143ab40ad503e95496ae3688 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/c5/b7/d2662ebf114961766c9eb3d9b737cb5541060d35e65b542b0acef470221a/ps
util-0.4.1.win32-py3.4.exe#md5=643191172a0aa4a6fd65aef7280c6a3b (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/c5/cc/9bb29fdd60e347617c3a09f51a595941ddb4777fc1608068d174ced5bfdd/ps
util-0.5.0.win-amd64-py2.7.exe#md5=a9de46fdc3dec71454efba4eaea10581 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/c6/c4/14807de009a1beab2426b537379a8b05b1d69fef1fde7e23581cc332cdb3/ps
util-0.4.1.win32-py2.7.exe#md5=aae9ad6b466d3085bab177d3f3859cab (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/c6/e0/67810b602a598488d1f2982451655427effe7c7062184fe036c2b5bc928f/ps
util-1.2.1.win32-py2.6.exe#md5=7d3d9c8bc147b87c04e93dd0ff1bd502 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/c7/22/811ac7c641191e3b65c053c95eb34f6567bbc5155912630464271ab6f3df/ps
util-2.1.2-cp26-none-win32.whl#md5=2564b087a410a913a83a12b6c6712f24 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/c7/5a/4046949e207b72b93540f3e19d699813fd35e290ccdf48080f332226b912/ps
util-3.1.0-cp33-none-win_amd64.whl#md5=30b71587a7a47a6d944032cceed9ddae (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/c7/67/2aae3f66090c2e06fa60c29a2e554fd2a718949aca53bca78d640212cb34/ps
util-2.1.1.win-amd64-py3.4.exe#md5=2b4dd5f4eda947eadba2c8dda036c116 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/c7/7d/cfb299960cf6923cca782f331b034c09239e9015dedf530dd206177dd6e4/ps
util-4.2.0-cp34-cp34m-win_amd64.whl#md5=25500a2e934bf886753640b2e2c8385e (from https://pypi.python.org/simple/psutil/);
it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/c7/96/3ae14e4bf81f18f404bb5285fcda28e50ae6df87e91ad6bf45a9a4f51ac3/ps
util-3.2.1-cp33-none-win32.whl#md5=6259e72593408341b5d0519d07522859 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/c8/e5/5d0a1b2e182e41888fc4e9f4f657f37f126f9fdcd431b592442311c2db98/ps
util-4.2.0-cp27-cp27m-win_amd64.whl#md5=94800232a808f23bf84a3638faab0c72 (from https://pypi.python.org/simple/psutil/);
it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/c9/57/6e65ff27fa567cd9a7bfbc0a435e33293451b80865bc3a3a7b13c9bf7799/ps
util-3.4.1-cp35-none-win32.whl#md5=d6699401e2b8678a3d84cf256d5696cf (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/c9/d0/1e413f0258d02bf77bc1d94002d041b8853584369e4af039cd5cf89e3270/ps
util-1.1.2.win-amd64-py3.2.exe#md5=2483f1d099933b7bf1b09ab499b290ea (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/ca/6e/5c0a87e2c1bac5e32471eb84b349f0808f6d6ed49b9118784af9d0e71baa/ps
util-0.2.1.win32-py2.5.exe#md5=7f46ae105df697e15a7d12927262e68b (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/cb/79/fcedcf009ab9f8c605f2f345b1797b72134ecc6c9c9f786575e34b3471bc/ps
util-3.2.2-cp35-none-win32.whl#md5=19badf29ec31cdb56d57c7cb28a3588c (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/cb/96/0eb8eb289681364d2cda2a22a7d1abeb0196b321ab95694335dd178a5b35/ps
util-3.1.1-cp33-none-win32.whl#md5=bb713f48fc8d714672b6dc42c924e7d5 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/cc/1b/863bee07da70fe61cae804333d64242d9001b54288e8ff54e770225bbc0a/ps
util-4.0.0.win-amd64-py3.5.exe#md5=3c6464acdd288de40df727f7a08107bb (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/cc/29/d00e1011e6db097ffac31c2876fdba51fd1fc251ee472ad6219095739a86/ps
util-0.7.1.win-amd64-py3.4.exe#md5=30d5732baa5e274d720b6f03f67880fd (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/cc/e0/adb41ece0bb2c27d75a41d98bd8f9802475d5d488df7d4905229596c0a70/ps
util-1.1.0.win32-py2.6.exe#md5=ec669bc37dd0cde68221c78da2e3f76a (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/cd/29/a8383040200a3ebe0e985f54f35691cc078a1deb632abb5340d3deb5b7b7/ps
util-3.2.0-cp33-none-win_amd64.whl#md5=b95a31dae01ce6c4add310d908a760c3 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/cd/2d/760f774b1325037ea4ef85972f45fc9dee417da33ba225b21a0a8e512f5d/ps
util-3.4.1-cp27-none-win32.whl#md5=62d1bc04ea38cc98d24370ed47ee285f (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Found link https://pypi.python.org/packages/cd/5f/4fae1036903c01929c48ded6800a8705106ee20f9e39e3f2ad5d1824e210/psuti
l-3.2.1.tar.gz#md5=a308816e735021fd4bf6aa561725c1aa (from https://pypi.python.org/simple/psutil/), version: 3.2.1
    Skipping link https://pypi.python.org/packages/cd/60/7134a7f812ef1eba9373c86b95ce6254f5f58928baba04af161f0066629f/ps
util-2.1.0.win-amd64-py3.3.exe#md5=d6304ffd3a11fd68502a7d2e1890dabe (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/cd/e6/9f963b32ab254b8c2bbedf5ce543cace8b08054924fd26fa233f99863ecc/ps
util-0.4.1.win-amd64-py3.4.exe#md5=74af92b38ed47ca8e553e97cac5ef762 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/ce/3f/7c434baec7ca47e65fb1e3bcbc8fe1c9f504d93c750a7fa4f98b16635920/ps
util-2.1.2.win32-py2.4.exe#md5=01a50a7d2a858b008393b95d673e4541 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/ce/8a/95e7c8b343a92137d82e4635fcb3f5c69c29e2a84ce4d51f2d5d86020b1e/ps
util-0.7.0.win-amd64-py3.4.exe#md5=4a1510007f663f453204ca89211db73e (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Found link https://pypi.python.org/packages/ce/d2/ab7f80718b4eafb2e474b8b410274d2c0d65341b963d730e653be9ed0ec8/psuti
l-3.1.0.tar.gz#md5=8b8fb3301e85c2dd3bbe91d75db261e8 (from https://pypi.python.org/simple/psutil/), version: 3.1.0
    Skipping link https://pypi.python.org/packages/d0/17/ec99e9252dae834f4a012e13c804c86907fcb1cb474f7b1bc767562bfa7b/ps
util-2.1.0.win32-py2.7.exe#md5=cfe1b146fc38176e4e63290fa15029a1 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/d2/67/9c988331d40c445ebc9d29d95534ce3908f3949f6a84d640a6c125bc56e2/ps
util-3.0.0.win-amd64-py3.4.exe#md5=277049297056f9b9a2cab5ecb6b222e5 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/d2/b4/887323eb2b0b5becb5a7b77ab04167741346fddffe27bc6ae5deeffcc3c1/ps
util-2.1.2.win-amd64-py3.3.exe#md5=cb11bfdd1ab3d39076850218c4476ff7 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/d3/19/39f42cdfba58ab593d24f49ffc073c07b9b34ff7d5ba079b975018002e51/ps
util-3.4.2-cp27-none-win_amd64.whl#md5=ddb2ce2bd89cbb6ef03b87f6220229e9 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/d4/19/4e5c376587076c969784762de8024bb30168a548b402e1b432221c5b97b1/ps
util-3.4.2-cp27-none-win32.whl#md5=279daba78863ab099d467e7fd6d02244 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/d5/6b/c10a228ef2cdbc077171be3b273cd2f49e4f814bf7dc2deb3a464cc126de/ps
util-4.2.0-cp33-cp33m-win_amd64.whl#md5=af8abf16c481d1f2dafbb9b8ba69e231 (from https://pypi.python.org/simple/psutil/);
it is not compatible with this Python
    Skipping link https://pypi.python.org/packages/d6/28/5753ba13863c26d8a8fef685690b539a4652f1c4929d13d482eb4d691d99/ps
util-1.0.0.win32-py2.5.exe#md5=126880ad97179e02ff95edea3d17f224 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/d6/d7/91226f8635d3850917b64e94ca4903910a60739ee7c930ef9678d93638eb/ps
util-0.6.0.win32-py3.3.exe#md5=7518fff5e2f41470f2ede9a40a77bd9a (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/d7/f9/984326888f6c519cc813a96640cc9a2900dad85e15b9d368fe1f12a9bd11/ps
util-0.2.0.win32-py2.6.exe#md5=c634c136b7af6f5623fe6469c7939f50 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/d8/65/2e9941492b3d001a87d87b5e5827b1f3cec42e30b7110fa82d24be8c4526/ps
util-1.2.1.win-amd64-py3.3.exe#md5=dc3a93b0fa84c786fac8c36bebd6b3e3 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/d8/66/d21041db114938ae22d4994ea31f2d8f1353aa61e5f0d0c6c4e185b016a7/ps
util-3.0.1.win-amd64-py3.4.exe#md5=00f55611295fce1bc92a03234e8fc1e6 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/d9/59/0f14daf5797c61db2fec25bca49b49aa0a5d57dec57b4e58ae4652dadb95/ps
util-2.2.1.win-amd64-py3.4.exe#md5=1ef08c2602bef31b6b7028b026393ced (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/da/76/dcefdcf88fd51becaff6c1ec0ba7566ca654a207fe6d69662723c645e3b0/ps
util-3.1.0.win-amd64-py3.4.exe#md5=913d051de00c98aa535a1c9190453123 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/db/87/34b52811b755db94a7dd123e5c0f1d257885535f08f5f185c17810214d55/ps
util-3.1.0-cp27-none-win32.whl#md5=5157949472b169c48684163ee51ee498 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/dc/8b/df5d7dcfe8fc5db0c303e518ce12b7117cb70e1cbb29c0396ea6e36fc7a2/ps
util-3.4.2-cp34-none-win32.whl#md5=7c7d41af200c5b9e63d188bb1c50bc71 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Found link https://pypi.python.org/packages/dc/b2/ab65a2209b996c891209b8a7444a0c825125fba850efaec07b95bccb3ff5/psuti
l-3.2.2.tar.gz#md5=56df1727c9e26076a80da4c3f8f67976 (from https://pypi.python.org/simple/psutil/), version: 3.2.2
    Skipping link https://pypi.python.org/packages/dc/f7/5d3f84507c057af85bc70da10b51a827766999f221b42cdf9621ca756e80/ps
util-4.1.0-cp35-cp35m-win32.whl#md5=670d62a32ccf8f288d1a91319bddaaaa (from https://pypi.python.org/simple/psutil/); it i
s not compatible with this Python
    Skipping link https://pypi.python.org/packages/dd/3e/cdc3d4f343e6edc583d0686d1d20d98f9e11de35c51dc7990525ab2ca332/ps
util-2.1.2.win32-py2.6.exe#md5=bab38e6ac0ae268648869df1304c5093 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/dd/46/31505418bd950b09d28c6c21be76a4a51d593ec06b412539797080c0aa6b/ps
util-2.2.0.win-amd64-py3.4.exe#md5=ddfff92a84f3889515a689e9b9bebade (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/dd/94/8aeb332d07530b552099eaf207db13d859e09facfa8162892b4f9ef302dd/ps
util-4.2.0-cp33-cp33m-win32.whl#md5=fc0c6f546e78486878d09a272c5ab0d9 (from https://pypi.python.org/simple/psutil/); it i
s not compatible with this Python
    Skipping link https://pypi.python.org/packages/dd/be/1aea1e7a1a3fb44f4c8d887a1d55e960de283d86875f15457a284268e197/ps
util-1.1.2.win32-py3.2.exe#md5=02d9841f2f3adf67ba725ac08c6442d2 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/de/51/d1ab564dfe98d5fcbccfcab0afdedb269f7266192721e94688ab3956b123/ps
util-3.4.2-cp35-none-win32.whl#md5=d0792e3503d05235bfb3871f5689ed0f (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Found link https://pypi.python.org/packages/df/47/ee54ef14dd40f8ce831a7581001a5096494dc99fe71586260ca6b531fe86/psuti
l-2.2.1.tar.gz#md5=1a2b58cd9e3a53528bb6148f0c4d5244 (from https://pypi.python.org/simple/psutil/), version: 2.2.1
    Skipping link https://pypi.python.org/packages/e0/ce/ff1db37cbdf6b3071e89afe4fced6f73d2cdf9c3a87696e7754d207e0ec5/ps
util-3.2.1.win32-py3.3.exe#md5=15a0f551cb36c4295ce438f3b11d1f0f (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/e0/e4/2ec24cecccf111a4dbda892b484bdfd8c00d3da5f99c1a0a79c469c62fb2/ps
util-0.2.0.win-amd64-py3.4.exe#md5=a0f9e136f84e64c77a0f31ad57b1d0f7 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/e1/49/990073ab7e010965a7d0df5e48181d07c212edd7fafb890feda664ea9b3c/ps
util-3.2.0.win-amd64-py2.7.exe#md5=ea8b5aec4acba25c1f208c27620cf9e4 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/e1/9e/721afc99b6fe467b47fa2cad6899acc19b45dee32d30b498dc731b6c09ef/ps
util-3.1.1-cp26-none-win32.whl#md5=b311b18afb16f306e3f5f30d686afca3 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/e2/fe/a5ec73e62878cc2d0451b7029f4406647435dd8036ab15d6ed2fd42558bf/ps
util-4.0.0-cp35-cp35m-win32.whl#md5=312718d9319015af2d25bc210ae1bb89 (from https://pypi.python.org/simple/psutil/); it i
s not compatible with this Python
    Skipping link https://pypi.python.org/packages/e3/2d/cd5c620f9e5cb090eea573b2dc16574e746529347b6133b2f0b6e686d917/ps
util-1.1.1.win-amd64-py3.2.exe#md5=be300ae2ee30e44b08762f79df8452d3 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/e3/35/81842c6c4366d19c87d1a1fb4ad4e4d22a18aa9facaea8b6f12ccd4c1212/ps
util-3.2.0.win32-py3.3.exe#md5=967bb15796e29ffa18d694fc54a025d8 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/e4/2f/b060e631686e6455ff483ea5b6333382c6dddb5727edbfc9dcca1a8f024c/ps
util-0.3.0.win32-py2.7.exe#md5=f30aa3f26d28a22d165802427dc2b820 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/e4/63/267b0977027c8a4a2f98a1ffbc2ecc7c0689d12adabee591a1ac99b4c14e/ps
util-4.2.0.win32-py2.7.exe#md5=dead4085603f0bfb0c46cdc4a44d22c7 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/e4/b1/34a4bd75027d08c8db4f6301d6562e333c8d9131dca08b7f76f05aeae00a/psuti
l-1.1.2.tar.gz#md5=fe9c9a3ed95fe6564acf8b4500c7b5da (from https://pypi.python.org/simple/psutil/), version: 1.1.2
    Skipping link https://pypi.python.org/packages/e5/13/b358b509d4996df82ef77758c14c0999c443df537eefacc7bb24b6339758/ps
util-0.2.1.win32-py2.6.exe#md5=58756c17a2f27992654f42f69c3a5729 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/e5/55/6a353c646e6d15ee618348ed68cf79800f1275ade127f665779b6be0ed19/ps
util-0.3.0.win32-py2.5.exe#md5=2ab646bb6401fafc4a11b49d7a7bd504 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/e6/14/9ac37705e0753732c7707b000d1e076daac95ee02f35fd43ce906235ea1f/ps
util-4.0.0.win-amd64-py3.3.exe#md5=862f04dfa1ab5eaf67d4ada1b0cf03dd (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/e6/1d/9a90eec0aec7e015d16f3922328336b4f8cd783f782e9ab81146b47ffee3/ps
util-0.2.0.win-amd64-py2.7.exe#md5=d1d8f2c1bf039d5ffc935105949bcdee (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/e6/50/df05e0cbfcf20f022756d5e2da32b4f4f37d5bca6f5bd6965b4ef0460e8b/ps
util-2.1.1.win-amd64-py2.7.exe#md5=45301b26a0d3749a6e9997db225f7750 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/e6/7b/655e08abdf19d06c8a3fd6fba35932867c80fcff05c97cf909b5d364603c/ps
util-1.1.3.win32-py3.3.exe#md5=6e776b4847c252dcbedb3f790cc85b2f (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/e7/b7/f04d64a692159733ed383b4638abd9d3dc4538d4aacb5e193af02a3840a2/ps
util-3.2.2-cp27-none-win_amd64.whl#md5=85dcf0e3e4791cd481c933ce14136f03 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/e8/1c/e7d17500c0f5899f0fd3fd3b6d93c92254aff6de00cabc9c08de5a3803a2/ps
util-4.1.0.win32-py3.3.exe#md5=ff23dd200eeab37926f156efc372b2b1 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/e8/2a/e215824c785d77119af61802bbb4d16dacc26ec0687709274afa3ac039fa/psuti
l-4.0.0-cp35-none-win_amd64.whl#md5=72af949728649e419c0342fcdce35432 (from https://pypi.python.org/simple/psutil/), vers
ion: 4.0.0
    Skipping link https://pypi.python.org/packages/e8/86/e72c22699491573508e85b226f1782eab840b713cd6b8d42655c5329324c/ps
util-1.0.1.win-amd64-py3.4.exe#md5=2f52242c60c91a945cd472a023265e69 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/e8/ac/7fb95ccc69ced76d0920e411b2fdfd3d38398c4bce53ec1dae92800df88a/ps
util-3.1.1.win-amd64-py2.7.exe#md5=9a09376399f71c6647cf5112ab2fa6dc (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/e8/c3/542bc833b743e952cbf99017ecb60add0ad3725a82e942b25aa5de523f8c/ps
util-4.0.0-cp27-cp27m-win32.whl#md5=dd56653732b5ae51d2ce09cc1228f2a8 (from https://pypi.python.org/simple/psutil/); it i
s not compatible with this Python
    Skipping link https://pypi.python.org/packages/e9/64/fe90d0f1ba2dff8ad2511423720aed3569cfe7b5dbb95ede64af25b77e84/ps
util-0.6.0.win32-py2.7.exe#md5=db77f71f203b324eb3fa8d4c4634df23 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/e9/e8/5b432a0490328cfff86605b574d2aa31b1fac4e61587dff5a7f76d4cb95e/ps
util-3.2.0.win32-py3.4.exe#md5=8926a29f218ac6e99758d54435cc93ec (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/ea/22/5f44e6eaa1e82f5a1497f3dfcf045e1998fca36d70de8a370ec96ce0f789/ps
util-4.0.0-cp34-none-win_amd64.whl#md5=cd331c3a9c154122e35a535f950dba87 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/ea/45/defb71d5009e178ef13e2474627a1070ae291b2dee64ae00e8f2b1a2aec2/ps
util-3.0.0-cp33-none-win32.whl#md5=0916ab5da37a0b435b1fda1ffc1437f5 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/eb/13/a38bc1e0ac6f7c42dddd9c17a206877befb822ba3af9c3b0dab9e85911a6/ps
util-3.1.1-cp33-none-win_amd64.whl#md5=c2bf0d8a1b36d15f4edb2d4257ad3998 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/eb/d9/55f5d02e42dc6c73f66c7cfc99bc3bf97cf10e9f259dbea69e123e0ef459/ps
util-0.5.1.win32-py2.6.exe#md5=9c6d9f45293723da226ba0294cf0584d (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/eb/db/ab023b5ce09f314ee58ee4b9e73e85172dd06272501570a34a1afe6115c2/ps
util-2.0.0.win-amd64-py3.3.exe#md5=ecdca3c4f198d60650972c2a63bfcabc (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/ec/2e/8d98579399bc1979904455df182a063dd584b285ee8c141f3c94e7814c47/ps
util-3.1.1-cp34-none-win_amd64.whl#md5=5c2f83e095ac66203f06fa955e4dc782 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/ec/60/0a9a96611c77866a2c4140159a57c2702523ebc5371eaa24e0353d88ac2c/ps
util-1.1.0.win32-py2.4.exe#md5=1507a76ba81a068acd3ffc0ed4ca2c4c (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/ed/7e/dd4062bfbe9b735793a5e63a38d83ba37292c4ada3615fe54403c54e3260/psuti
l-1.0.0.tar.gz#md5=d68e3a779f5b9b5a779d76a9c5cd5244 (from https://pypi.python.org/simple/psutil/), version: 1.0.0
    Skipping link https://pypi.python.org/packages/ed/85/1d4d97ce4c9a8c6dd479f5f717694016651170d3731cdecf740db0e4eae3/ps
util-3.0.1-cp34-none-win32.whl#md5=331aa85ba81024384573e33fa9dc3ba0 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/ed/fe/f31bb708dfdecfbc59b946ecb9ee3379fe7a8183c37ea6c43d6f4da5117d/ps
util-3.2.2-cp34-none-win_amd64.whl#md5=a8dcf65e8108ac37c0a2753b760b7ac1 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/ee/cb/7d42052f4057c6233ba3f4b7afade92117f58c5d7544ee6ab16e82c515c7/ps
util-1.1.3.win32-py2.5.exe#md5=37ee51da2a4847525879a4b8501d1762 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/ef/0e/0cf2fea8f6e2e5ef84797eefc2c5ce561123e2417d7b931a6c54f9f8d413/ps
util-2.2.0-cp34-none-win32.whl#md5=efd6ac1842c920c28ecfbb20b23f9c61 (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/ef/4a/c956675314e4a50b319d9894c2ee2d48ce83df4d639d9c2fc06a99415dec/ps
util-2.1.2-cp34-none-win32.whl#md5=9210a9779a520a0bb82e8b720fc34c6b (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/f0/0a/32abfd9b965c9a433b5011574c904372b954330c170c6f92b637d661ecd2/ps
util-2.1.0.win32-py3.3.exe#md5=fd8142e7395697feef6062f73dbaad4f (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/f0/f6/ccf16168a627d10ffbd80120cd2c521c4c9ecdb4545e402b7deca79f93ac/psuti
l-3.4.1-cp35-none-win_amd64.whl#md5=74c1153652f72b059929d294f882346c (from https://pypi.python.org/simple/psutil/), vers
ion: 3.4.1
    Skipping link https://pypi.python.org/packages/f1/26/a0904455b550f7fd5baa069ca10889825cc22440147813713998cd0676a0/ps
util-3.0.0-cp27-none-win_amd64.whl#md5=50aad90241b49a3870675d1f0c45aabb (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/f1/63/2fcaa58b101dce55a12f768508a7f0a0028ccc5a90633d86dd4cc0bcdb52/ps
util-2.1.1.win32-py3.3.exe#md5=bac08428386f60231dcba92cdd9860f2 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/f1/65/040624aab6ca646af0c8b68ac54d08e0a33a672feb9405581cd509741367/ps
util-4.1.0-cp35-cp35m-win_amd64.whl#md5=18bb040800b7c8dcf89d06e357df18d3 (from https://pypi.python.org/simple/psutil/);
it is not compatible with this Python
    Found link https://pypi.python.org/packages/f2/5c/4e74b08905dab9474a53534507e463fe8eec98b2fc0d29964b0c6a7f959d/psuti
l-0.3.0.tar.gz#md5=8223aace5a56aa4c631897bd50f99145 (from https://pypi.python.org/simple/psutil/), version: 0.3.0
    Skipping link https://pypi.python.org/packages/f2/88/a856c5ed36d15b8ad74597f380baa29891ec284e7a1be4cb2f91f8453bd8/ps
util-2.1.0.win32-py2.6.exe#md5=60bc3108078da09323f3f8bf2e07ea30 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/f3/4d/7f105269ece54ad7344c2a24b42ecb216b2746460f349c0ed1577b5ab8fa/ps
util-2.1.3.win32-py2.6.exe#md5=8456444cc12209cc15c58495a328b431 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/f4/2b/13be095a72c83fdbe11d519310cb34ff8e442d72ab52691218a83c216ac4/ps
util-0.4.0.win32-py3.3.exe#md5=e1ca0a84590762cfb1717f692def6778 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/f4/7c/56b718693e4c41b32af8bbe39160e8a3ea0ca12d3eece3dbbb8d4c046855/ps
util-3.1.0-cp33-none-win32.whl#md5=87fc1a961edf670ec69a6a970143257e (from https://pypi.python.org/simple/psutil/); it is
 not compatible with this Python
    Skipping link https://pypi.python.org/packages/f4/88/d20f7eefa6b8cc59f9320c52bf561ba52baea2b9b36568b198bca0b3548d/ps
util-0.6.1.win32-py3.4.exe#md5=4383f6b23b44d0225ec11cce974a240d (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/f4/f9/79ac18809795f53197fb5b6bd452d2b52f62e5bff6a66d9b813077a85eb9/ps
util-0.7.1.win32-py3.4.exe#md5=6534dc3b224dffcb560368c878217d64 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/f5/3b/eab6a8d832d805c7a00d0f2398c12a32bea7e8b6eb7d5fbdf869e4bcc9e0/ps
util-2.1.0.win32-py3.4.exe#md5=dbfc8d55b07aa6d6d242d0dc94279856 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/f5/7c/1a33b78a66a96e740e197ae55719496ba57bb9cee32f710a5a6affa68cc8/ps
util-1.1.2.win32-py3.3.exe#md5=f440f47ab680c05bdfd7ee7e7a9f3c77 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/f5/83/45b721a52001c1ba1f196e6b2ba3b12d99cbc03bf3f508f1fe56b4e25c66/ps
util-0.2.0.win32-py3.4.exe#md5=3bdceba7227cb93804d5436397043924 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/f6/71/1f9049fc7936f7f48f0553abd8bf8394f4ad2d9fb63a881b3a653b67abd6/psuti
l-1.1.0.tar.gz#md5=ab7c4172aabd42ea3b9f80224222dce5 (from https://pypi.python.org/simple/psutil/), version: 1.1.0
    Skipping link https://pypi.python.org/packages/f7/90/53adfe2804c9cde062eb5014d88f0d067690fe1457ad2f49a2a553767689/ps
util-3.4.1.win-amd64-py2.6.exe#md5=a49f9c406e7323bfac904161c419f55c (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/f8/ba/346cc719249b9a5281dab059cb8796aff6faf487142f50966fc08330ad79/ps
util-2.0.0.win32-py2.5.exe#md5=503e5ff8a6bbfeb8787b84f2ad39d831 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/f9/df/437db01296118d668cf654f097ad2b1c341291ba5dc4b5eb80f0a0a40c52/ps
util-1.1.2.win-amd64-py2.7.exe#md5=88506db2f400fcbbb95161a2b86e0df0 (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/fa/5b/8834e22cc22b6b0e9c2c68e240ab69754bed7c4c5388fb65abfa716f4a67/ps
util-3.1.1-cp27-none-win_amd64.whl#md5=84145eaee006b84c5f104c05b832ac22 (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Skipping link https://pypi.python.org/packages/fb/01/73753147113f6db19734db6e7ac994cee5cce0f0935e12320d7aa1b56a14/ps
util-2.1.2.win32-py2.7.exe#md5=db6ca0cd130f61d681f8321c00c9e7fa (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/fb/20/9438b78a3155b1eb480a4ea09dab6370f06e0a003cf43c3975743e0c9e8d/ps
util-3.3.0.win-amd64-py3.3.exe#md5=9d830db8250928af6006879f329e376c (from https://pypi.python.org/simple/psutil/); unsup
ported archive format: .exe
    Skipping link https://pypi.python.org/packages/fb/29/25ac80b589c0e56214ac64fdd8216992be162a2b2290f9b88b9a5c517cfd/ps
util-3.0.0.win32-py3.4.exe#md5=6dbb9e292c4a8683f1c292ec5c2b0b27 (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/fc/0f/92e595cd2f2a80cead241d45b4ce4961e2515deff101644f3812c75e9bc7/ps
util-3.0.0.win32-py2.7.exe#md5=6333843788c03fd1899761322552262c (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Skipping link https://pypi.python.org/packages/fc/29/387c555f9dc38c6bb084a8df8936e607848de9e2e984dbf7eb2a298c1ceb/ps
util-3.0.0.win32-py3.3.exe#md5=cc1e3fa5cbfdbf7ebc318195a74d295e (from https://pypi.python.org/simple/psutil/); unsupport
ed archive format: .exe
    Found link https://pypi.python.org/packages/fe/69/c0d8e9b9f8a58cbf71aa4cf7f27c27ee0ab05abe32d9157ec22e223edef4/psuti
l-3.3.0.tar.gz#md5=0625db01ea46417308db94cc59362b65 (from https://pypi.python.org/simple/psutil/), version: 3.3.0
    Skipping link https://pypi.python.org/packages/fe/8d/ffc94f092a12fc3cb837b9bda93abd88fb12219bcc6684b9bffea5e1f385/ps
util-2.2.1-cp33-none-win_amd64.whl#md5=578127132e703f137b75c8fd85a8956f (from https://pypi.python.org/simple/psutil/); i
t is not compatible with this Python
    Found link https://pypi.python.org/packages/fe/a3/7cf43f28bbb52c4d680378f99e900ced201ade5073ee3a7b30e7f09e3c66/psuti
l-2.1.3.tar.gz#md5=015a013c46bb9bc30b5c344f26dea0d3 (from https://pypi.python.org/simple/psutil/), version: 2.1.3
  Using version 4.2.0 (newest of versions: 4.2.0, 4.1.0, 4.0.0, 4.0.0, 3.4.2, 3.4.2, 3.4.1, 3.4.1, 3.3.0, 3.3.0, 3.2.2,
3.2.2, 3.2.1, 3.2.0, 3.1.1, 3.1.0, 3.0.1, 3.0.0, 2.2.1, 2.2.0, 2.1.3, 2.1.2, 2.1.1, 2.1.0, 2.0.0, 1.2.1, 1.2.0, 1.1.3, 1
.1.2, 1.1.1, 1.1.0, 1.0.1, 1.0.0, 0.7.1, 0.7.0, 0.6.1, 0.6.0, 0.5.1, 0.5.0, 0.4.1, 0.4.0, 0.3.0, 0.2.1, 0.2.0, 0.1.3, 0.
1.2, 0.1.1)
  Using cached psutil-4.2.0.tar.gz
  Downloading from URL https://pypi.python.org/packages/a6/bf/5ce23dc9f50de662af3b4bf54812438c298634224924c4e18b7c3b57a2
aa/psutil-4.2.0.tar.gz#md5=713f259f917a0c26acfbb7e6ae632ef7 (from https://pypi.python.org/simple/psutil/)
  Running setup.py (path:C:\Users\Jeff\AppData\Local\Temp\pip-build-amq9o7ck\psutil\setup.py) egg_info for package psuti
l
    Running command python setup.py egg_info
    running egg_info
    creating pip-egg-info\psutil.egg-info
    writing top-level names to pip-egg-info\psutil.egg-info\top_level.txt
    writing dependency_links to pip-egg-info\psutil.egg-info\dependency_links.txt
    writing pip-egg-info\psutil.egg-info\PKG-INFO
    writing manifest file 'pip-egg-info\psutil.egg-info\SOURCES.txt'
    warning: manifest_maker: standard file '-c' not found

    reading manifest file 'pip-egg-info\psutil.egg-info\SOURCES.txt'
    reading manifest template 'MANIFEST.in'
    warning: no previously-included files matching '*' found under directory 'docs\_build'
    writing manifest file 'pip-egg-info\psutil.egg-info\SOURCES.txt'
  Source in c:\users\jeff\appdata\local\temp\pip-build-amq9o7ck\psutil has version 4.2.0, which satisfies requirement ps
util from https://pypi.python.org/packages/a6/bf/5ce23dc9f50de662af3b4bf54812438c298634224924c4e18b7c3b57a2aa/psutil-4.2
.0.tar.gz#md5=713f259f917a0c26acfbb7e6ae632ef7
Installing collected packages: psutil
  Running setup.py install for psutil
    Running command c:\python35_amd64\python.exe -c "import setuptools, tokenize;__file__='C:\\Users\\Jeff\\AppData\\Loc
al\\Temp\\pip-build-amq9o7ck\\psutil\\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\
r\n', '\n'), __file__, 'exec'))" install --record C:\Users\Jeff\AppData\Local\Temp\pip-2ibd55l2-record\install-record.tx
t --single-version-externally-managed --compile
    running install
    running build
    running build_py
    creating build
    creating build\lib.win-amd64-3.5
    creating build\lib.win-amd64-3.5\psutil
    copying psutil\_common.py -> build\lib.win-amd64-3.5\psutil
    copying psutil\_compat.py -> build\lib.win-amd64-3.5\psutil
    copying psutil\_psbsd.py -> build\lib.win-amd64-3.5\psutil
    copying psutil\_pslinux.py -> build\lib.win-amd64-3.5\psutil
    copying psutil\_psosx.py -> build\lib.win-amd64-3.5\psutil
    copying psutil\_psposix.py -> build\lib.win-amd64-3.5\psutil
    copying psutil\_pssunos.py -> build\lib.win-amd64-3.5\psutil
    copying psutil\_pswindows.py -> build\lib.win-amd64-3.5\psutil
    copying psutil\__init__.py -> build\lib.win-amd64-3.5\psutil
    creating build\lib.win-amd64-3.5\psutil\tests
    copying psutil\tests\runner.py -> build\lib.win-amd64-3.5\psutil\tests
    copying psutil\tests\test_bsd.py -> build\lib.win-amd64-3.5\psutil\tests
    copying psutil\tests\test_linux.py -> build\lib.win-amd64-3.5\psutil\tests
    copying psutil\tests\test_memory_leaks.py -> build\lib.win-amd64-3.5\psutil\tests
    copying psutil\tests\test_misc.py -> build\lib.win-amd64-3.5\psutil\tests
    copying psutil\tests\test_osx.py -> build\lib.win-amd64-3.5\psutil\tests
    copying psutil\tests\test_posix.py -> build\lib.win-amd64-3.5\psutil\tests
    copying psutil\tests\test_process.py -> build\lib.win-amd64-3.5\psutil\tests
    copying psutil\tests\test_sunos.py -> build\lib.win-amd64-3.5\psutil\tests
    copying psutil\tests\test_system.py -> build\lib.win-amd64-3.5\psutil\tests
    copying psutil\tests\test_windows.py -> build\lib.win-amd64-3.5\psutil\tests
    copying psutil\tests\__init__.py -> build\lib.win-amd64-3.5\psutil\tests
    running build_ext
    building 'psutil._psutil_windows' extension
    creating build\temp.win-amd64-3.5
    creating build\temp.win-amd64-3.5\Release
    creating build\temp.win-amd64-3.5\Release\psutil
    creating build\temp.win-amd64-3.5\Release\psutil\arch
    creating build\temp.win-amd64-3.5\Release\psutil\arch\windows
    C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -DPSUTIL
_VERSION=420 -D_WIN32_WINNT=0x01000 -D_AVAIL_WINVER_=0x01000 -D_CRT_SECURE_NO_WARNINGS -DPSAPI_VERSION=1 -Ic:\python35_a
md64\include -Ic:\python35_amd64\include "-IC:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE" "-IC:\Progra
m Files (x86)\Microsoft Visual Studio 14.0\VC\ATLMFC\INCLUDE" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.101
50.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.6\include\um" "-IC:\Program Files (x86)\Windows Kits\8.1\in
clude\shared" "-IC:\Program Files (x86)\Windows Kits\8.1\include\um" "-IC:\Program Files (x86)\Windows Kits\8.1\include\
winrt" /Tcpsutil/_psutil_windows.c /Fobuild\temp.win-amd64-3.5\Release\psutil/_psutil_windows.obj
    _psutil_windows.c
    psutil/_psutil_windows.c(860): warning C4267: '=': conversion from 'size_t' to 'DWORD', possible loss of data
    psutil/_psutil_windows.c(1425): warning C4267: '=': conversion from 'size_t' to 'ULONG', possible loss of data
    psutil/_psutil_windows.c(1426): warning C4267: '=': conversion from 'size_t' to 'ULONG', possible loss of data
    psutil/_psutil_windows.c(1999): warning C4312: 'type cast': conversion from 'int' to 'PVOID' of greater size
    psutil/_psutil_windows.c(2770): warning C4311: 'type cast': pointer truncation from 'PVOID' to 'unsigned long'
    C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -DPSUTIL
_VERSION=420 -D_WIN32_WINNT=0x01000 -D_AVAIL_WINVER_=0x01000 -D_CRT_SECURE_NO_WARNINGS -DPSAPI_VERSION=1 -Ic:\python35_a
md64\include -Ic:\python35_amd64\include "-IC:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE" "-IC:\Progra
m Files (x86)\Microsoft Visual Studio 14.0\VC\ATLMFC\INCLUDE" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.101
50.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.6\include\um" "-IC:\Program Files (x86)\Windows Kits\8.1\in
clude\shared" "-IC:\Program Files (x86)\Windows Kits\8.1\include\um" "-IC:\Program Files (x86)\Windows Kits\8.1\include\
winrt" /Tcpsutil/_psutil_common.c /Fobuild\temp.win-amd64-3.5\Release\psutil/_psutil_common.obj
    _psutil_common.c
    C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -DPSUTIL
_VERSION=420 -D_WIN32_WINNT=0x01000 -D_AVAIL_WINVER_=0x01000 -D_CRT_SECURE_NO_WARNINGS -DPSAPI_VERSION=1 -Ic:\python35_a
md64\include -Ic:\python35_amd64\include "-IC:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE" "-IC:\Progra
m Files (x86)\Microsoft Visual Studio 14.0\VC\ATLMFC\INCLUDE" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.101
50.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.6\include\um" "-IC:\Program Files (x86)\Windows Kits\8.1\in
clude\shared" "-IC:\Program Files (x86)\Windows Kits\8.1\include\um" "-IC:\Program Files (x86)\Windows Kits\8.1\include\
winrt" /Tcpsutil/arch/windows/process_info.c /Fobuild\temp.win-amd64-3.5\Release\psutil/arch/windows/process_info.obj
    process_info.c
    psutil/arch/windows/process_info.c(840): warning C4312: 'type cast': conversion from 'DWORD' to 'HANDLE' of greater
size
    C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -DPSUTIL
_VERSION=420 -D_WIN32_WINNT=0x01000 -D_AVAIL_WINVER_=0x01000 -D_CRT_SECURE_NO_WARNINGS -DPSAPI_VERSION=1 -Ic:\python35_a
md64\include -Ic:\python35_amd64\include "-IC:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE" "-IC:\Progra
m Files (x86)\Microsoft Visual Studio 14.0\VC\ATLMFC\INCLUDE" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.101
50.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.6\include\um" "-IC:\Program Files (x86)\Windows Kits\8.1\in
clude\shared" "-IC:\Program Files (x86)\Windows Kits\8.1\include\um" "-IC:\Program Files (x86)\Windows Kits\8.1\include\
winrt" /Tcpsutil/arch/windows/process_handles.c /Fobuild\temp.win-amd64-3.5\Release\psutil/arch/windows/process_handles.
obj
    process_handles.c
    psutil/arch/windows/process_handles.c(37): warning C4996: 'GetVersionExW': was declared deprecated
    C:\Program Files (x86)\Windows Kits\8.1\include\um\sysinfoapi.h(442): note: see declaration of 'GetVersionExW'
    psutil/arch/windows/process_handles.c(141): warning C4312: 'type cast': conversion from 'long' to 'HANDLE' of greate
r size
    psutil/arch/windows/process_handles.c(404): warning C4312: 'type cast': conversion from 'long' to 'HANDLE' of greate
r size
    C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -DPSUTIL
_VERSION=420 -D_WIN32_WINNT=0x01000 -D_AVAIL_WINVER_=0x01000 -D_CRT_SECURE_NO_WARNINGS -DPSAPI_VERSION=1 -Ic:\python35_a
md64\include -Ic:\python35_amd64\include "-IC:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE" "-IC:\Progra
m Files (x86)\Microsoft Visual Studio 14.0\VC\ATLMFC\INCLUDE" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.101
50.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.6\include\um" "-IC:\Program Files (x86)\Windows Kits\8.1\in
clude\shared" "-IC:\Program Files (x86)\Windows Kits\8.1\include\um" "-IC:\Program Files (x86)\Windows Kits\8.1\include\
winrt" /Tcpsutil/arch/windows/security.c /Fobuild\temp.win-amd64-3.5\Release\psutil/arch/windows/security.obj
    security.c
    C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -DPSUTIL
_VERSION=420 -D_WIN32_WINNT=0x01000 -D_AVAIL_WINVER_=0x01000 -D_CRT_SECURE_NO_WARNINGS -DPSAPI_VERSION=1 -Ic:\python35_a
md64\include -Ic:\python35_amd64\include "-IC:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE" "-IC:\Progra
m Files (x86)\Microsoft Visual Studio 14.0\VC\ATLMFC\INCLUDE" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.101
50.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.6\include\um" "-IC:\Program Files (x86)\Windows Kits\8.1\in
clude\shared" "-IC:\Program Files (x86)\Windows Kits\8.1\include\um" "-IC:\Program Files (x86)\Windows Kits\8.1\include\
winrt" /Tcpsutil/arch/windows/inet_ntop.c /Fobuild\temp.win-amd64-3.5\Release\psutil/arch/windows/inet_ntop.obj
    inet_ntop.c
    psutil/arch/windows/inet_ntop.c(34): warning C4996: 'WSAAddressToStringA': Use WSAAddressToStringW() instead or defi
ne _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings
    C:\Program Files (x86)\Windows Kits\8.1\include\um\winsock2.h(3556): note: see declaration of 'WSAAddressToStringA'
    C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -DPSUTIL
_VERSION=420 -D_WIN32_WINNT=0x01000 -D_AVAIL_WINVER_=0x01000 -D_CRT_SECURE_NO_WARNINGS -DPSAPI_VERSION=1 -Ic:\python35_a
md64\include -Ic:\python35_amd64\include "-IC:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE" "-IC:\Progra
m Files (x86)\Microsoft Visual Studio 14.0\VC\ATLMFC\INCLUDE" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.101
50.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.6\include\um" "-IC:\Program Files (x86)\Windows Kits\8.1\in
clude\shared" "-IC:\Program Files (x86)\Windows Kits\8.1\include\um" "-IC:\Program Files (x86)\Windows Kits\8.1\include\
winrt" /Tcpsutil/arch/windows/services.c /Fobuild\temp.win-amd64-3.5\Release\psutil/arch/windows/services.obj
    services.c
    psutil/arch/windows/services.c(347): warning C4013: '_tcslen' undefined; assuming extern returning int
    C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\link.exe /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFE
ST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:c:\python35_amd64\libs /LIBPATH:c:\python35_amd64\PCbuild\amd64 "/LIBPATH:C:\Prog
ram Files (x86)\Microsoft Visual Studio 14.0\VC\LIB\amd64" "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio 14.0
\VC\ATLMFC\LIB\amd64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\lib\10.0.10150.0\ucrt\x64" "/LIBPATH:C:\Program F
iles (x86)\Windows Kits\NETFXSDK\4.6\lib\um\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\8.1\lib\winv6.3\um\x64" p
sapi.lib kernel32.lib advapi32.lib shell32.lib netapi32.lib iphlpapi.lib wtsapi32.lib ws2_32.lib /EXPORT:PyInit__psutil_
windows build\temp.win-amd64-3.5\Release\psutil/_psutil_windows.obj build\temp.win-amd64-3.5\Release\psutil/_psutil_comm
on.obj build\temp.win-amd64-3.5\Release\psutil/arch/windows/process_info.obj build\temp.win-amd64-3.5\Release\psutil/arc
h/windows/process_handles.obj build\temp.win-amd64-3.5\Release\psutil/arch/windows/security.obj build\temp.win-amd64-3.5
\Release\psutil/arch/windows/inet_ntop.obj build\temp.win-amd64-3.5\Release\psutil/arch/windows/services.obj /OUT:build\
lib.win-amd64-3.5\psutil\_psutil_windows.cp35-win_amd64.pyd /IMPLIB:build\temp.win-amd64-3.5\Release\psutil\_psutil_wind
ows.cp35-win_amd64.lib
    _psutil_windows.obj : warning LNK4197: export 'PyInit__psutil_windows' specified multiple times; using first specifi
cation
       Creating library build\temp.win-amd64-3.5\Release\psutil\_psutil_windows.cp35-win_amd64.lib and object build\temp
.win-amd64-3.5\Release\psutil\_psutil_windows.cp35-win_amd64.exp
    Generating code
    Finished generating code
    running install_lib
    creating c:\python35_amd64\Lib\site-packages\psutil
    creating c:\python35_amd64\Lib\site-packages\psutil\tests
    copying build\lib.win-amd64-3.5\psutil\tests\runner.py -> c:\python35_amd64\Lib\site-packages\psutil\tests
    copying build\lib.win-amd64-3.5\psutil\tests\test_bsd.py -> c:\python35_amd64\Lib\site-packages\psutil\tests
    copying build\lib.win-amd64-3.5\psutil\tests\test_linux.py -> c:\python35_amd64\Lib\site-packages\psutil\tests
    copying build\lib.win-amd64-3.5\psutil\tests\test_memory_leaks.py -> c:\python35_amd64\Lib\site-packages\psutil\test
s
    copying build\lib.win-amd64-3.5\psutil\tests\test_misc.py -> c:\python35_amd64\Lib\site-packages\psutil\tests
    copying build\lib.win-amd64-3.5\psutil\tests\test_osx.py -> c:\python35_amd64\Lib\site-packages\psutil\tests
    copying build\lib.win-amd64-3.5\psutil\tests\test_posix.py -> c:\python35_amd64\Lib\site-packages\psutil\tests
    copying build\lib.win-amd64-3.5\psutil\tests\test_process.py -> c:\python35_amd64\Lib\site-packages\psutil\tests
    copying build\lib.win-amd64-3.5\psutil\tests\test_sunos.py -> c:\python35_amd64\Lib\site-packages\psutil\tests
    copying build\lib.win-amd64-3.5\psutil\tests\test_system.py -> c:\python35_amd64\Lib\site-packages\psutil\tests
    copying build\lib.win-amd64-3.5\psutil\tests\test_windows.py -> c:\python35_amd64\Lib\site-packages\psutil\tests
    copying build\lib.win-amd64-3.5\psutil\tests\__init__.py -> c:\python35_amd64\Lib\site-packages\psutil\tests
    copying build\lib.win-amd64-3.5\psutil\_common.py -> c:\python35_amd64\Lib\site-packages\psutil
    copying build\lib.win-amd64-3.5\psutil\_compat.py -> c:\python35_amd64\Lib\site-packages\psutil
    copying build\lib.win-amd64-3.5\psutil\_psbsd.py -> c:\python35_amd64\Lib\site-packages\psutil
    copying build\lib.win-amd64-3.5\psutil\_pslinux.py -> c:\python35_amd64\Lib\site-packages\psutil
    copying build\lib.win-amd64-3.5\psutil\_psosx.py -> c:\python35_amd64\Lib\site-packages\psutil
    copying build\lib.win-amd64-3.5\psutil\_psposix.py -> c:\python35_amd64\Lib\site-packages\psutil
    copying build\lib.win-amd64-3.5\psutil\_pssunos.py -> c:\python35_amd64\Lib\site-packages\psutil
    copying build\lib.win-amd64-3.5\psutil\_psutil_windows.cp35-win_amd64.pyd -> c:\python35_amd64\Lib\site-packages\psu
til
    copying build\lib.win-amd64-3.5\psutil\_pswindows.py -> c:\python35_amd64\Lib\site-packages\psutil
    copying build\lib.win-amd64-3.5\psutil\__init__.py -> c:\python35_amd64\Lib\site-packages\psutil
    byte-compiling c:\python35_amd64\Lib\site-packages\psutil\tests\runner.py to runner.cpython-35.pyc
    byte-compiling c:\python35_amd64\Lib\site-packages\psutil\tests\test_bsd.py to test_bsd.cpython-35.pyc
    byte-compiling c:\python35_amd64\Lib\site-packages\psutil\tests\test_linux.py to test_linux.cpython-35.pyc
    byte-compiling c:\python35_amd64\Lib\site-packages\psutil\tests\test_memory_leaks.py to test_memory_leaks.cpython-35
.pyc
    byte-compiling c:\python35_amd64\Lib\site-packages\psutil\tests\test_misc.py to test_misc.cpython-35.pyc
    byte-compiling c:\python35_amd64\Lib\site-packages\psutil\tests\test_osx.py to test_osx.cpython-35.pyc
    byte-compiling c:\python35_amd64\Lib\site-packages\psutil\tests\test_posix.py to test_posix.cpython-35.pyc
    byte-compiling c:\python35_amd64\Lib\site-packages\psutil\tests\test_process.py to test_process.cpython-35.pyc
    byte-compiling c:\python35_amd64\Lib\site-packages\psutil\tests\test_sunos.py to test_sunos.cpython-35.pyc
    byte-compiling c:\python35_amd64\Lib\site-packages\psutil\tests\test_system.py to test_system.cpython-35.pyc
    byte-compiling c:\python35_amd64\Lib\site-packages\psutil\tests\test_windows.py to test_windows.cpython-35.pyc
    byte-compiling c:\python35_amd64\Lib\site-packages\psutil\tests\__init__.py to __init__.cpython-35.pyc
    byte-compiling c:\python35_amd64\Lib\site-packages\psutil\_common.py to _common.cpython-35.pyc
    byte-compiling c:\python35_amd64\Lib\site-packages\psutil\_compat.py to _compat.cpython-35.pyc
    byte-compiling c:\python35_amd64\Lib\site-packages\psutil\_psbsd.py to _psbsd.cpython-35.pyc
    byte-compiling c:\python35_amd64\Lib\site-packages\psutil\_pslinux.py to _pslinux.cpython-35.pyc
    byte-compiling c:\python35_amd64\Lib\site-packages\psutil\_psosx.py to _psosx.cpython-35.pyc
    byte-compiling c:\python35_amd64\Lib\site-packages\psutil\_psposix.py to _psposix.cpython-35.pyc
    byte-compiling c:\python35_amd64\Lib\site-packages\psutil\_pssunos.py to _pssunos.cpython-35.pyc
    byte-compiling c:\python35_amd64\Lib\site-packages\psutil\_pswindows.py to _pswindows.cpython-35.pyc
    byte-compiling c:\python35_amd64\Lib\site-packages\psutil\__init__.py to __init__.cpython-35.pyc
    running install_egg_info
    running egg_info
    writing dependency_links to psutil.egg-info\dependency_links.txt
    writing psutil.egg-info\PKG-INFO
    writing top-level names to psutil.egg-info\top_level.txt
    warning: manifest_maker: standard file '-c' not found

    reading manifest file 'psutil.egg-info\SOURCES.txt'
    reading manifest template 'MANIFEST.in'
    warning: no previously-included files matching '*' found under directory 'docs\_build'
    writing manifest file 'psutil.egg-info\SOURCES.txt'
    Copying psutil.egg-info to c:\python35_amd64\Lib\site-packages\psutil-4.2.0-py3.5.egg-info
    running install_scripts
    writing list of installed files to 'C:\Users\Jeff\AppData\Local\Temp\pip-2ibd55l2-record\install-record.txt'
  Removing source in C:\Users\Jeff\AppData\Local\Temp\pip-build-amq9o7ck\psutil
Successfully installed psutil-4.2.0
Cleaning up...
You are using pip version 7.1.2, however version 8.1.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.
PS C:\> Stop-Transcript
**********************
Windows PowerShell transcript end
End time: 20160516121750
**********************

@giampaolo
Copy link
Owner

giampaolo commented May 31, 2016

OK so I took a closer look at this by installing a fresh Win 10 box with no VS installed. I can reproduce the issue if I use pip 7.1.2 (as @mrjefftang) but after I upgraded pip (pip install -U pip) I was able to install psutil so the issue is not the pip version used to create the wheels, but the version used to install them.
Long story short, running pip install -U pip on the host machine which desires to install psutil should fix this issue.

@giampaolo
Copy link
Owner

giampaolo commented May 31, 2016

On a second thought, if possible, perhaps it makes more sense to use the default pip version shipped with Python 2.7 and generate the wheels with that version of pip.
https://www.google.com/search?sourceid=chrome-psyapi2&ion=1&espv=2&ie=UTF-8&q=psutil%20dll%20load%20failed&oq=psutil%20dll&aqs=chrome.0.0j69i57j69i60j0l2.1995j0j7 shows there's a lot of people running into this issue.
Basically it seems the wheels created with pip 8 are incompatible with pip 7. :-\

@giampaolo
Copy link
Owner

Also here: https://bitbucket.org/pypa/wheel/issues/169/incompatible-wheels-on-windows-depending
We may just rename the generated wheel (not tested yet).

@giampaolo
Copy link
Owner

OK, I should have fixed this problem by creating the wheel with pip 7.1.2 and then by renaming the wheel adding a -none- prefix as described here: https://bitbucket.org/pypa/wheel/issues/169/incompatible-wheels-on-windows-depending
A new release (4.3.0) is out so now you should be able to pip install psutil on Windows + Python 2.7 and get psutil installed. Please confirm this is true so I can close this issue.

nlevitt added a commit to nlevitt/psutil that referenced this issue Jun 22, 2016
* origin/master: (121 commits)
  update HISTORY/README
  giampaolo#810: rename windows wheels to make pip 7.1.2 happy
  add doc warning about disk_io_counter() numbers which may overlap (se giampaolo#802)
  update HISTORY
  git travis/osx error
  fix typo
  fix travis err
  add STAT for ps.py
  Convert string arguments to bytes
  appveyor download script: check the num of download files and print a warning if it's < than expected
  win / CI: try not to upgrade pip version and see whether pip produces compatible wheels
  refactor makefile
  makefile refactoring
  makefile refactoring
  Updated to use better if/else/endif values (my bad) Updated HISTORY to explain better that Win XP still uses 32bit values Reverted test code, will add in a different PR
  Styling fixes (spaces instead of tabs)
  PEP 8 compliance and history update (Vista+ only for fix)
  Type fix
  Continue on RuntimeError when running df on partitions it can't run on
  Fix disk_usage test to use 1 kB block size due to issues with OS X
  Add comment lines to ifs for win versions
  Actually does need it in XP/2000 unfortunately
  Tried to keep the mingw32 support but win 7 sdk is causing issues
  Whoops, whitespace issue
  Add back in ws2tcpip.h in the proper place in Win XP / Win 2000
  Fixes for compiling on Win XP/Win 200
  Update HISTORY.rst with giampaolo#816 issue bug fix
  Fix for windows net_io_counters wrapping after 4.3GB due to MIB_IFROW using DWORD. Updated to use MIB_IF_ROW2 which gives ULONG values instead. This causes more breaking changes for Windows XP and all Windows versions less than Vista / Server 2008 meaning that it should have no problems working on Vista / Server 2008 and beyond.
  fix doc indentation
  doc indentation
  fix giampaolo#829: disk_usage().percent takes reserved root space into account
  giampaolo#829: add tests to compare disk_usage() with 'df' cmdline utility
  small refactoring
  update comment
  update badges
  move stuff around
  reorganize (move stuff in) _common.py
  def __all__ for _common.py module
  reorganize (move) test utils
  update __all__
  small @memoize refactoring
  Fix psutil.virtual_memory() type mismatch for NetBSD.
  prettyfy code
  prettyfy code
  update README
  Sets Makefile variable for imports compatible with Python 3.x
  fix linux test
  memory_maps: use bytes
  fir unpackment err
  refactor smaps code
  linux memory_maps refactoring
  fix typo
  update doc
  update version and HISTORY
  re-enable win services
  re-enable all tests on windows
  try to upgrade pip
  try to upgrade pip
  try to upgrade pip
  try to install pip globally
  try to upgrade pip
  force build of old 4.1.0 ver
  giampaolo#817: add script to download exes/whels from appveyor
  appveyor exp 5
  appveyor exp 4
  appveyor exp 3
  appveyor exp 2 appveyor/ci#806 (comment)
  appveyor exp appveyor/ci#806 (comment)
  appveyor experiment
  appveyor experiment
  appveyor: attempt differe VS config for py 3.5
  fix typo
  restore previous appveyor conf + try to add python 3.5 64 bits
  try easier appveyor conf, see pypa/packaging.python.org#172
  try to make appveyor create exes/wheels
  add freebsd dev notes
  refactor ctx switches
  uids/gids refactoring
  refactor num_threads
  more refactoring
  [Linux] Process.name() is 25% faster (on python 3)
  ignore me
  remove outdated test
  [Linux] speedup Process.status() by 28%
  [Linux] speedup Process.pid() by 20% by reading it from /proc/pid/stat instead of /proc/pid/status
  set ppid
  linux set ppid
  fix 813: have as_dict() ignore extraneous attribute names which getsattached to the Process instance
  pep8 fixes
  fix giampaolo#812: [NetBSD] fix compilation on NetBSD-5.x.
  build fix: MNT_RELATIME and MNT_EXTATTR are not available on NetBSD-5
  build fix: declare warn()
  update IDEAS
  fix win tests
  better AD error handling on win
  service descr: handle unicode errors
  service descr: handle empty description str
  check PyUnicodeDecode return value
  add services memory leak tests
  update doc
  ...
@giampaolo
Copy link
Owner

Re-opening as Windows 2003 has the same issue (see #348).

@giampaolo giampaolo reopened this Oct 17, 2016
@giampaolo giampaolo changed the title Unable to install psutil 4.1.0 on windows Windows (old versions): DLL load failed error Oct 17, 2016
@giampaolo
Copy link
Owner

Closing as a duplicate of #936.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

5 participants