Skip to content

Instantly share code, notes, and snippets.

@JimHokanson
Created June 27, 2015 16:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JimHokanson/0fa18b66bfd5aec93855 to your computer and use it in GitHub Desktop.
Save JimHokanson/0fa18b66bfd5aec93855 to your computer and use it in GitHub Desktop.
Python Windows Notes
Anaconda
- https://store.continuum.io/cshop/anaconda/
- version? - uninstall program - shows version 1.9.0
conda update scipy
Wheel files:
Where is Python?????
import sys
print(sys.version)
print(sys.executable)
my case:
C:\Users\RNEL\Anaconda\python.exe
cd C:\Users\RNEL\Anaconda\Scripts\
1) pip install wheel
2) pip install scipy-0.15.1-cp27-none-win_amd64.whl
Getting a permission error
===========================================================
http://www.lfd.uci.edu/~gohlke/pythonlibs/
http://docs.continuum.io/anaconda/pkg-docs.html
https://store.continuum.io/cshop/anaconda/
import sys
print (sys.version)
print(sys.executable)
scipy.__version__
C:\Python34\Scripts>
pip install wheel
http://stackoverflow.com/questions/27885397/how-do-i-install-a-python-package-with-a-whl-file
C:\Users\RNEL\Anaconda\python.exe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment