SpiNNakerManchester / SpiNNakerManchester.github.io

Organization Pages, Documentation and Issues
http://spinnakermanchester.github.io/
Apache License 2.0
12 stars 7 forks source link

python pip install v not working in windows #16

Closed Christian-B closed 7 years ago

Christian-B commented 7 years ago

http://spinnakermanchester.github.io/development/devenv.html#PythonRequirements

Line: pip install ... "spalloc>=v0.2.2,<v1.0.0" ...

In windows the version numbers with v do not work.

replace with: pip install ... "spalloc>=0.2.2,<1.0.0" ...

Then it works

Note: In windows the command is of course python -m pip ...

rowleya commented 7 years ago

Yes, this is a weird issue - I think that the version should be 0.2.2, and that the v should be removed, but we must have had issues in the past with this. I will have to investigate again and see what has gone wrong...

Note that on windows, pip install should work - you shouldn't need to do python -m pip. The installation of pip should create a pip.exe file in C:\Python27\Scripts I think.

Christian-B commented 7 years ago

Agree pip.exe has been installed and does work in windows

But pip install "spalloc>=v0.2.2,<v1.0.0"

Still fails.

Christian-B commented 7 years ago

Works with the v in fedora

alan-stokes commented 7 years ago

also worksd with v in ubuntu

On Wed, Feb 1, 2017 at 12:20 PM, Christian Y. Brenninkmeijer < notifications@github.com> wrote:

Works with the v in fedora

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/SpiNNakerManchester/SpiNNakerManchester.github.io/issues/16#issuecomment-276644195, or mute the thread https://github.com/notifications/unsubscribe-auth/AHLCyBUdLZXDNpwFtsrONxClDxJQHKU5ks5rYHiGgaJpZM4Lyr-n .

rowleya commented 7 years ago

It probably depends on the pip version - does it work without the v in fedora and ubuntu? If so, we can just remove the v...

alan-stokes commented 7 years ago

least in ubuntu. yep

On Wed, Feb 1, 2017 at 1:09 PM, Andrew Rowley notifications@github.com wrote:

It probably depends on the pip version - does it work without the v in fedora and ubuntu? If so, we can just remove the v...

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/SpiNNakerManchester/SpiNNakerManchester.github.io/issues/16#issuecomment-276653156, or mute the thread https://github.com/notifications/unsubscribe-auth/AHLCyPCZbS-lAoHLVH26tCxQHx0g6bAUks5rYIQCgaJpZM4Lyr-n .

andrewgait commented 7 years ago

Fixed with https://github.com/SpiNNakerManchester/SpiNNakerManchester.github.io/pull/25

alan-stokes commented 7 years ago

closed