This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fink selfupdate | |
fink install python | |
fink install ipython2.7 | |
fink install shapely-py27 | |
fink install matplotlib-py27 scipy-py27 pandas-py27 # Good science packages | |
dpkg -L shapely-py27 # see all the files installed by fink for shapely | |
dpkg -L shapely-py27 | grep wkb | |
# /sw/lib/python2.7/site-packages/shapely/wkb.py | |
# /sw/lib/python2.7/site-packages/shapely/wkb.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./grib_api-1.10.0/configure --with-jasper=/sw --prefix=/Users/schwehr/Desktop/grib/test-install | |
make -j 3 | |
Making all in src | |
Makefile:1406: dummy.am: No such file or directory | |
make[1]: *** No rule to make target `dummy.am'. Stop. | |
make: *** [all-recursive] Error 1 | |
# found all dummy.am files and copied them into the VPATH build directory tree. Then that issue went away. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install python-virtualenv | |
virtualenv --system-site-packages sklearn-ve | |
source sklearn-ve/bin/activate | |
# What is out of date? | |
pip install yolk | |
yolk -U | |
# ipython 0.12.1 (0.13.1) | |
# matplotlib 1.1.1rc (1.2.0) | |
# numpy 1.6.1 (1.6.2) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
X = np.random.random((100, 4)) | |
X.shape | |
from sklearn import datasets | |
data = datasets.load_iris() | |
iris = datasets.load_iris() |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer