Posts

Showing posts with the label Python library

Pandas installation on Visual Studio

Image
Visual Studio provides very simple UI and guidance to install Pandas which should be manually installed yourself when suing Visual Studio. Go to 'Tool' --> 'Python Tools' --> 'Python Environments' Then you will the 'Python Environments' window on the right hand side. Click the small button on the right and 'PIP' and enter keyword 'pandas' to search it. Don't forget to 'Refresh Python DB' as the last step by clicking the button on the next.

matplotlib installation

Image
This takes few minutes to install 'matplotlib' lilbrary on your computer. 1. Download https://pypi.python.org/pypi/matplotlib My case is having Python 2.7 version and 64 bit platform so downloaded as below. matplotlib-1.5.1- cp27 -none-win_ amd64 .whl 2. Install command > python -m pip install "[Download path]\matplotlib-1.5.1-cp27-none-win_amd64.whl" Done!!!

NumPy installation

Image
I spent 2 hours ...to know how to install NumPy python library in my computer. This post can help you to install NumPy quick and easy. I am sure. It takes only 15 minutes for NumPy installation. What is NumPy? Wiki will help me from here . Requirement: - Already Python (higher 2.7) programming tool installed in your computer. 1. Download Download NumPy package from: http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy My computer is 64bit platform having Python 2.7 version. So choose "...+mkl-cp27...amd64.." as below. 2. Run 'Command prompt' (cmd) and enter as below > python -m pip install "[Download Path]\numpy-1.10.4+mkl-cp27-cp27m-win_amd64.whl" You know where the downloaded file is. My case was "C:\...\download". 3. DONE!!! ======================================================================== But if you see the below print. Then it's also simple. Just enter the following command to upgrade your ...