Labels

Friday, May 8, 2015

My Python developement environment

My Python environment:

OS: Win 7 64bit Eng
Python: Python 3.4
IDE: PyCharm Community Edition (free)

Pymssql and numpy (Scipy):

They are the two essential packages I need current stage.

Pymssql:
Pymssql is used to connect Python scripts and MSSQL server. One should noticed that the in some time 2011, pymssql changed its strategy. Now pymssql connects to MSSQL only via SQL authentication (in MSSQL, that means you change your MSSQL authentication mode to be SQL and Win, also known as mixed mode)

Numpy
Numpy appears always with scipy. numpy is a numeric package for Python, for example, it helps you define a matrix whichis not supported by Python by default. If one need some advanced scientific mathematical functions, use scipy. Before you can install scipy, you must have numpy installed. For details, google numpy or google scipy.

Problems encountered and solved:

Connect python with SQL server

Install numpy

No comments:

Post a Comment