· Python · 2 min read
Python Tutorial: How to install Anaconda3 (Python 3.5) for Windows
Read Python for Data Analysis from O'REILLY on Safari with a 10-day trial. Navigate to continuum.io Click on Anaconda | Downloads Anaconda is complete development environment with over 300 Python...
This post was originally published on jcutrer.com (WordPress) and has been migrated to the archive.
Read (http://www.dpbolvw.net/click-7774208-12307942) from O’REILLY on Safari with a 10-day trial.
Navigate to (https://www.continuum.io/)
Click on Anaconda | Downloads
Anaconda is complete development environment with over 300 Python packages.
The Anaconda installer is somewhat large as it bundles a lot of packages such as pywin32, numpy, scipy. A complete list of packages can be found (http://docs.continuum.io/anaconda/pkg-docs).
I recommend installing the 3.5 version of Anaconda which includes Python 3.5. You can still setup a Python 2.7 environment later as I will show you (#).
You can also download (http://conda.pydata.org/miniconda.html), a much small download which only contains Python and conda. Then you can install individual packages using the conda command.
Download the Python 3.5 Installer
Once the installed has finished downloading, run it and install Anaconda.
I chose “install for everyone” but you may need to choose “just for me” if you do not have administrative privileges on the computer.
Install Anaconda accepting the default path
Once the installation is finished, we can test things out. No reboot is required.
Open a new command prompt window and type python. You should see a Python shell with the Python and anaconda versions listed above.
We can also confirm that some of the packages that come with anaconda are also present but issuing the import command.
import numby import pywin32 import graphviz import pymsql
You are now ready to start developing with Python on Windows
More Python Goodness
- (/python/pipenv-pipfile)
- (/python/python-tutorial-howto-parse-rss-headlines)
- (/python/python-tutorial-query-dell-poweredge-temperature-snmp-data)
Comments are disabled (Giscus not yet configured).