tungwaiyip.info

home

about me

links

Blog

< December 2013 >
SuMoTuWeThFrSa
1 2 3 4 5 6 7
8 91011121314
15161718192021
22232425262728
293031    

past articles »

Click for San Francisco, California Forecast

San Francisco, USA

 

Getting Cython to work with Python 3.3 on Windows

I have spent a fair bit of time to get Cython to work with Python 3.3 on Windows. So I just add a note here in case anyone want a similar setup. These are the components I use:

  • Windows 7
  • Python 3.3 (Anaconda distribution)
  • Visual C++ 2010 Express

To install Python 3.3 version of Anaconda there is a twist. The Anaconda Windows installer (as of 2013-12) is of Python 2.7. You could add the Python 3.3 environment after Anaconda is installed. But then you will be adding the 3.3 packages on top of the 2GB base 2.7 installation. If you don't need 2.7, there is a way to save the disk space. Download and install the Miniconda3 installer. It should be a 32M base installer only. Note that I have only successfully used the x86 32 bit version. I would explain the problem of the 64 bit version later. Next run this to install the Python 3.3 Anaconda packages.

conda update conda
conda create -n py33 python=3.3 anaconda
activate py33

Previously I have tried to download miniconda and install individual packages as needed. But then I find that I did not save much disk space compare to the 2GB full Anaconda packages. So I rather save myself hassle and install everything.

Next you need a C compilers. The idea is your C compiler should be of the same version that compiles the Python interpreter. How do you find out what version of compiler is used? Notice when you start the Python interpreter, it output one line that says the system version. From this we can find out the what it is compiled from. The Anaconda Python version string looks like:

Python 3.3.3 |Anaconda 1.8.0 (32-bit)| (default, Dec 3 2013, 11:58:39) [MSC v.1600 32 bit (Intel)]

1600 is the MSVC version string. Divide it by 100 and then minus 6 gets you 10. This corresponds to Visual Studio 2010 Express. If you have Python 2.7, the version string reads 1500 and it corresponds to Visual Studio 2008 express. I found out this only after tracing the source code in msvc9compiler.py in the distutils packages.

Originally I have installed the 64 bit version of miniconda. In this case the version is like

Python 3.3.3 |Continuum Analytics, Inc.| (default, Dec 3 2013, 11:56:40) [MSC v.1600 64 bit (AMD64)] on win32

I don't know what is the significance of the label (AMD64) in there (my PC is Intel i7). But this prevent the msvc9compiler from associating with the correct compiler. It gives me a cryptic error when I tried compiling:

ValueError: ['path']

I have succeed only after I reinstall with the 32 bit miniconda. With this I am able to compile Cython's hello world example. I hope this helps.

2013.12.18 [] - comments

 

 

blog comments powered by Disqus

past articles »

 

BBC News

 

Russia assumes UN Security Council presidency despite Ukrainian anger (01 Apr 2023)

 

'I'm still alive' jokes Pope as he leaves hospital (01 Apr 2023)

 

Iran signals determination to enforce hijab rules (01 Apr 2023)

 

Woah! Olympic star Fraser-Pryce runs in son's sports day (01 Apr 2023)

 

US tornadoes leaves 11 dead, including one at Illinois music gig (01 Apr 2023)

 

Balochistan: Four Pakistan border guards killed by militants near Iran (01 Apr 2023)

 

Andrew Tate and Tristan Tate moved to house arrest (01 Apr 2023)

 

Ukraine accuses Orthodox Church leader Pavel of pro-Russian stance (01 Apr 2023)

 

Trump will not appear in court in handcuffs - lawyer (31 Mar 2023)

 

Scottish boxing great Buchanan dies at age 77 (01 Apr 2023)

more »

 

SF Gate

 

Roku lays off 200 workers for second time in five months (31 Mar 2023)

 

Electronic Arts paying to unload office space, laying off 6% of workers (30 Mar 2023)

 

Bay Area luxury carmaker Lucid lays off 1,300 workers and executives (29 Mar 2023)

 

After laying off 28% of staff, SF's Twilio will at least keep remote work (29 Mar 2023)

 

Home improvement spending is up 22%: How homeowners are paying (29 Mar 2023)

 

How does a home equity loan work? (29 Mar 2023)

more »


Site feed Updated: 2023-Apr-01 09:00