Okay, decided to try this and now the python.exe crashing is back.
1. I uninstalled gensim 0.10.x using "conda remove gensim"; verified using "conda list" that gensim was uninstalled.
2. I downloaded gensim-0.12.0rc1.tar.gz from
https://pypi.python.org/pypi/gensim/0.12.0rc1#downloads3. I installed using "python setup.py install". Did not notice any issues during the install.
4. When running the line "from gensim import corpora, models, similarities" in IPython Notebook, python.exe crashed.
5. When running "python setup.py test" from the command line, python.exe crashed again. This is the output it generated before the crash occurred:
running test
running egg_info
writing requirements to gensim.egg-info\requires.txt
writing dependency_links to gensim.egg-info\dependency_links.txt
writing gensim.egg-info\PKG-INFO
writing top-level names to gensim.egg-info\top_level.txt
reading manifest file 'gensim.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching '*.sh' under directory '.'
no previously-included directories found matching 'docs\src*'
writing manifest file 'gensim.egg-info\SOURCES.txt'
running build_ext
copying build\lib.win-amd64-3.4\gensim\models\word2vec_inner.pyd -> gensim\models
copying build\lib.win-amd64-3.4\gensim\models\doc2vec_inner.pyd -> gensim\models
I've uninstalled and will try the wheel package you suggested next.