How can I use Numerical Python with Python 2.6

I'm forced to upgrade to Python 2.6 and am having issues using Numerical Python (NumPy) with Python 2.6 in Windows. I'm getting the following error...

Traceback (most recent call last):
  File "<pyshell#0>", line 1, in <module>
    from numpy.core.numeric import array,dot,all
  File "C:\svn\svn_urbansim\UrbanSimDev\Builds\working\urbansim\Tools\Python26\lib\site-packages\numpy\__init__.py", line 39, in <module>
    import core
  File "C:\svn\svn_urbansim\UrbanSimDev\Builds\working\urbansim\Tools\Python26\lib\site-packages\numpy\core\__init__.py", line 5, in <module>
    import multiarray
ImportError: Module use of python25.dll conflicts with this version of Python.

It appears that the existing module is trying to use the python25.dll file. Is there any way I can tell it to use the python26.dll file instead without modifying the source code?


Asked by: Lenny514 | Posted: 28-01-2022






Answer 1

How did you install it? NumPy doesn't currently have a Python 2.6 binary.

If you have LAPACK/ATLAS/BLAS, etc. and a development environment you should be able to compile numpy from sources. Otherwise I think you're stuck with using Python 2.5 on Windows if you need NumPy.

The next version of NumPy should have a 2.6 binary, and it's likely to be out within the next month or so.

[Edit]: It appears that a pygame developer created a NumPy 1.2.1 binary for Python 2.6 on Windows, available here.

Answered by: Rafael188 | Posted: 01-03-2022



Answer 2

NumPy 1.3.0 is available for Python 2.6 now.

Answered by: Lily223 | Posted: 01-03-2022



Similar questions

python - How do I assign a numerical value to each uppercase Letter?

How do i assign a numerical value to each uppercase letter, and then use it later via string and then add up the values. EG. A = 1, B = 2, C = 3 (etc..) string = 'ABC' Then return the answer 6 (in this case).


python - Sorting list of lists with mixed numerical values

Scenario: List containing 'rows' of list records with a variety of values Problem: List.sort doesn't take the numeric values into consideration so values end up all over the place i.e 9 is appearing in the list after 80 I've tried using list.sort(key=operator.itemgetter[index]) and doing a list.sort(lambda x,y:int(x[index])&lt;int(y[index]))


How do I format code neatly in HTML/CSS ? I especially want to use the numerical circle callouts, with Python Docutils if I can

see: http://diveintopython.net/native_data_types/lists.html#d0e5623 I have a website with code examples on it, generated through docutils, and the CSS is always not quite right. I would like to know if there is best practise CSS for displaying code (ie can it handle wrap arounds, long l...


python - Sort a list of numerical strings in ascending order

I have created a sqlite database which has a table which stores temperature values. The temperature values are written to the database in ascending order for the first time. Then I read the temperature values from the database into a list and then add that list to a combo box to select temperatures - works fine. The resulting list is, say: templist = ['25', '50', '100', '150', '200', '250', '300']....


python - How can I convert a list of strings into numerical values?

I want to find out how to convert a list of strings into a list of numbers. I have a php form through which user enters values for x and y like this: X: [1,3,4] Y: [2,4,5] These values are stored into database as varchars. From there, these are called by a python program which is supposed to use them as numerical (numpy) arrays. However, these are called as plain strings, which mea...


python - In scikit learn, how to deal with the data mixed with numerical and nominal value?

I know that the computation in scikit-learn is based on NumPy so everything is a matrix or array. How does this package handle mixed data (numerical and nominal values)? For example, a product could have the attribute 'color' and 'price', where color is nominal and price is numerical. I notice there is a model called 'DictVectorizer' to numerate the nominal data. For example, two products are:


python - Mixing numpy and OO in numerical work

First, I'd like to know if it's good practice in general to use an OO approach in numerical work. Second, a possible use case for OO would be to encapsulate in some object the parameters of some model. Say, I want to study parabolas of the form ax^2 + bx +c. So I would encapsulate a, b, c in some Parabola object. I can plot it and so on. Now, let's say, I want to explore the location of the vertical axis of parabol...


python - numerical coding of mutated residues and positions

I'm writing a python program which has to compute a numerical coding of mutated residues and positions of a set of strings.These strings are protein sequences.These sequences are stored in fasta format file and each protein sequence is separated by comma.The sequence lengths may differ for different protein.In this I tried to find the position and sequence which are mutated. I used following code for ...


linear algebra - Is there any numerical solver in python with control of each iteration?

I am solving a linear system of equation currently i am using numpy.linalg.solve It returns the solution of the linear system. I want to have a control such that i can execute iterations Considering another option scipy.optimize.minimize Documentation describes that we can specify a function which is called after every iteration and...


PYGAME - Edit colours of an image (makes white red at 255,0,0) without numerical python?

I'm making a simple game, whereby I want my characters quite customizable. I want my characters to be able to be fully edited in colours, for example, if a player wants their character to have cyan skin, they just put into the sliders, or what I choose to use, "0,255,255", or purple "255,0,255", or something random "25,125, 156", and have their character be that colour. I haven't even started creating the game, but I've go...






Still can't find your answer? Check out these communities...



PySlackers | Full Stack Python | NHS Python | Pythonist Cafe | Hacker Earth | Discord Python



top