An open API service indexing awesome lists of open source software.

https://github.com/knio/py35win64ext

An example C extension module for 64bit Python 3.5 on Windows
https://github.com/knio/py35win64ext

Last synced: about 1 year ago
JSON representation

An example C extension module for 64bit Python 3.5 on Windows

Awesome Lists containing this project

README

          

Hello World C Extension
-----------------------

An example C extension module for Python 3.5, and how to build it on Windows.

1. Install Python 3.5 x86-64
----------------------------

https://www.python.org/downloads/release/python

2. Install Visual Studio 2015
-----------------------------

https://www.visualstudio.com/en-us/products/visual-studio-express-vs.aspx

I picked this one:

![VS2015](readme/vs2015.png)

3. Open the "VS2015 x86 x64 Cross Tools Command Prompt"
-----------------------------

Not the "Native Tools Command Prompt"

Not the "Developer Command Prompt"

![VS2015](readme/cmd.png)

4. Build It
-----------

`python setup.py install`

5. Run It
---------

`python -m pytest test.py`