Compiling Python modules on Windows x64

前端 未结 5 1972
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-13 02:53

I\'m starting out some projects in words processing and I needed NumPy and NLTK. That was the first time I got to know easy_install and how to compile new modul

5条回答
  •  春和景丽
    2020-12-13 03:19

    This worked best for me:

    1. Install Visual Studio Express 2008
    2. Install Microsoft Windows SDK for Windows 7 and .NET Framework 3.5 SP1 from http://www.microsoft.com/en-us/download/details.aspx?id=3138
    3. Go to C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin and open the Visual Studio 2008 x64 Win64 Command Prompt
    4. In that shell, run pip install

    You should not have to install any redistributable packages on client systems when done this way.

提交回复
热议问题