Last active
January 20, 2017 07:14
-
-
Save zii/5fe60a0d2b078d81ba4d119a4b1a3ac3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#coding: utf-8 | |
# download and install VC++ for python 2.7 | |
# https://www.microsoft.com/en-us/download/details.aspx?id=44266 | |
from distutils import msvc9compiler | |
msvc9compiler.find_vcvarsall = lambda v: 'C:/Users/cat/AppData/Local/Programs/Common/Microsoft/Visual C++ for Python/9.0/vcvarsall.bat' | |
import pyximport; pyximport.install() | |
import hello |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment