On Fri, Feb 12, 2016 at 3:15 PM, R Schumacher <r...@blue-cove.com> wrote:
> At 03:06 PM 2/12/2016, you wrote:
>
>> Any feedback would be very useful,
>
>
> Sure, here's a little:
>
> C:\Python34\Scripts>pip install -f
> https://nipy.bic.berkeley.edu/scipy_installers/atlas_builds numpy
> Requirement already satisfied (use --upgrade to upgrade): numpy in
> c:\python34\lib\site-packages
> Cleaning up...

Thanks - yes - I should maybe have said that testing in a virtual
environment is your best bet.

Here's me testing from Powershell on a 32-bit Windows and on Pythons
3.5 and 2.7:

PS C:\tmp> c:\Python35\python -m venv np-testing
PS C:\tmp> .\np-testing\Scripts\Activate.ps1
(np-testing) PS C:\tmp> pip install -f
https://nipy.bic.berkeley.edu/scipy_installers/atlas_builds numpy nose
Collecting numpy
  Downloading 
https://nipy.bic.berkeley.edu/scipy_installers/atlas_builds/numpy-1.10.4-cp35-none-win32.whl
(6.6MB)
    100% |################################| 6.6MB 34kB/s
Collecting nose
  Using cached nose-1.3.7-py3-none-any.whl
Installing collected packages: numpy, nose
Successfully installed nose-1.3.7 numpy-1.10.4
You are using pip version 7.1.2, however version 8.0.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade
pip' command.
(np-testing) PS C:\tmp> python -c 'import numpy; numpy.test()'
Running unit tests for numpy
NumPy version 1.10.4
NumPy relaxed strides checking option: False
NumPy is installed in C:\tmp\np-testing\lib\site-packages\numpy
Python version 3.5.0 (v3.5.0:374f501f4567, Sep 13 2015, 02:16:59) [MSC
v.1900 32 bit (Intel)]
nose version 1.3.7
......... [test output]

Now on 2.7

(np-testing) PS C:\tmp> deactivate
PS C:\tmp> C:\Python27\Scripts\pip.exe install virtualenv
[...] output snipped
PS C:\tmp> C:\Python27\Scripts\virtualenv.exe np27-testing
Ignoring indexes: https://pypi.python.org/simple
Collecting pip
Collecting wheel
Collecting setuptools
Installing collected packages: pip, wheel, setuptools
Successfully installed pip-7.1.2 setuptools-18.5 wheel-0.26.0
PS C:\tmp> .\np27-testing\Scripts\activate.ps1
(np27-testing) PS C:\tmp> pip install -f
https://nipy.bic.berkeley.edu/scipy_installers/atlas_builds numpy nose
Collecting numpy
c:\tmp\np27-testing\lib\site-packages\pip\_vendor\requests\packages\urllib3\util\ssl_.py:90:
InsecurePlatformWarning: A
true SSLContext object is not available. This prevents urllib3 from
configuring SSL appropriately and may cause certain
SSL connections to fail. For more information, see
https://urllib3.readthedocs.org/en/latest/security.html#insecureplatf
ormwarning.
  InsecurePlatformWarning
  Downloading 
https://nipy.bic.berkeley.edu/scipy_installers/atlas_builds/numpy-1.10.4-cp27-none-win32.whl
(6.4MB)
    100% |################################| 6.4MB 35kB/s
Collecting nose
c:\tmp\np27-testing\lib\site-packages\pip\_vendor\requests\packages\urllib3\util\ssl_.py:90:
InsecurePlatformWarning: A
true SSLContext object is not available. This prevents urllib3 from
configuring SSL appropriately and may cause certain
SSL connections to fail. For more information, see
https://urllib3.readthedocs.org/en/latest/security.html#insecureplatf
ormwarning.
  InsecurePlatformWarning
  Using cached nose-1.3.7-py2-none-any.whl
Installing collected packages: numpy, nose
Successfully installed nose-1.3.7 numpy-1.10.4
You are using pip version 7.1.2, however version 8.0.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade
pip' command.
(np27-testing) PS C:\tmp> python -c 'import numpy; numpy.test()'
Running unit tests for numpy
NumPy version 1.10.4
NumPy relaxed strides checking option: False
NumPy is installed in c:\tmp\np27-testing\lib\site-packages\numpy
Python version 2.7.8 (default, Jun 30 2014, 16:03:49) [MSC v.1500 32
bit (Intel)]
nose version 1.3.7
.............. [etc]

Thanks a lot for testing,

Matthew
_______________________________________________
NumPy-Discussion mailing list
NumPy-Discussion@scipy.org
https://mail.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to