Closed shopetan closed 9 years ago
作業:install を始めた. とりあえずgithub内のREADMEを参照してinstallの欄を確認して突っ込もうとした. 思っている事: デフォルトのインストールでえらった.
MacBook-Pro-8:scikit-learn shopetan$ python setup.py install --user
Partial import of sklearn during the build process.
Traceback (most recent call last):
File "setup.py", line 196, in <module>
setup_package()
File "setup.py", line 179, in setup_package
raise ImportError("Numerical Python (NumPy) is not installed.\n"
ImportError: Numerical Python (NumPy) is not installed.
scikit-learn requires NumPy.
Installation instructions are available on scikit-learn website: http://scikit-learn.org/stable/install.html
numpyを求められている. pip3で管理しているのでデフォルトでnumpyが入っていなかったのが問題.
パッケージ管理が出来るのならばパッケージ管理でインストールする方法も書いたほうが良いのでは? http://scikit-learn.org/dev/install.html このページに詳細が書いてあるので,リンクをREADMEに付与した方が良いのではなかろうか. ちなみにpip3ではインストールが出来た.
MacBook-Pro-8:scikit-learn shopetan$ pip3 --version
pip 7.0.3 from /usr/local/lib/python3.4/site-packages (python 3.4)
MacBook-Pro-8:scikit-learn shopetan$ sudo pip install scikit-learn
Password:
The directory '/Users/shopetan/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
You are using pip version 7.0.3, however version 7.1.0 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
The directory '/Users/shopetan/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
Collecting scikit-learn
Downloading scikit_learn-0.16.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (5.1MB)
100% |████████████████████████████████| 5.1MB 104kB/s
Installing collected packages: scikit-learn
Successfully installed scikit-learn-0.16.1
作業: testing http://scikit-learn.org/dev/install.html#install-bleeding-edge ここを参考にした. 思っていること: 上手くいかない.
python setup.py build_ext --inplace
を実行後に,
MacBook-Pro-8:scikit-learn shopetan$ nosetests -v sklearn/
を実行したら,
Failure: ImportError (dlopen(/Users/shopetan/b3/springAB/sezemi/scikit-learn/sklearn/__check_build/_check_build.so, 2): Symbol not found: _PyString_FromFormat
Referenced from: /Users/shopetan/b3/springAB/sezemi/scikit-learn/sklearn/__check_build/_check_build.so
Expected in: flat namespace
in /Users/shopetan/b3/springAB/sezemi/scikit-learn/sklearn/__check_build/_check_build.so
___________________________________________________________________________
Contents of /Users/shopetan/b3/springAB/sezemi/scikit-learn/sklearn/__check_build:
__init__.py __pycache__ _check_build.c
_check_build.pyx _check_build.so setup.py
setup.pyc
___________________________________________________________________________
It seems that scikit-learn has not been built correctly.
If you have installed scikit-learn from source, please do not forget
to build the package before using it: run `python setup.py install` or
`make` in the source directory.
If you have used an installer, please check that it is suited for your
Python version, your operating system and your platform.) ... ERROR
======================================================================
ERROR: Failure: ImportError (dlopen(/Users/shopetan/b3/springAB/sezemi/scikit-learn/sklearn/__check_build/_check_build.so, 2): Symbol not found: _PyString_FromFormat
Referenced from: /Users/shopetan/b3/springAB/sezemi/scikit-learn/sklearn/__check_build/_check_build.so
Expected in: flat namespace
in /Users/shopetan/b3/springAB/sezemi/scikit-learn/sklearn/__check_build/_check_build.so
___________________________________________________________________________
Contents of /Users/shopetan/b3/springAB/sezemi/scikit-learn/sklearn/__check_build:
__init__.py __pycache__ _check_build.c
_check_build.pyx _check_build.so setup.py
setup.pyc
___________________________________________________________________________
It seems that scikit-learn has not been built correctly.
If you have installed scikit-learn from source, please do not forget
to build the package before using it: run `python setup.py install` or
`make` in the source directory.
If you have used an installer, please check that it is suited for your
Python version, your operating system and your platform.)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/shopetan/b3/springAB/sezemi/scikit-learn/sklearn/__check_build/__init__.py", line 44, in <module>
from ._check_build import check_build
ImportError: dlopen(/Users/shopetan/b3/springAB/sezemi/scikit-learn/sklearn/__check_build/_check_build.so, 2): Symbol not found: _PyString_FromFormat
Referenced from: /Users/shopetan/b3/springAB/sezemi/scikit-learn/sklearn/__check_build/_check_build.so
Expected in: flat namespace
in /Users/shopetan/b3/springAB/sezemi/scikit-learn/sklearn/__check_build/_check_build.so
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.4/site-packages/nose/failure.py", line 39, in runTest
raise self.exc_val.with_traceback(self.tb)
File "/usr/local/lib/python3.4/site-packages/nose/loader.py", line 414, in loadTestsFromName
addr.filename, addr.module)
File "/usr/local/lib/python3.4/site-packages/nose/importer.py", line 47, in importFromPath
return self.importFromDir(dir_path, fqname)
File "/usr/local/lib/python3.4/site-packages/nose/importer.py", line 94, in importFromDir
mod = load_module(part_fqname, fh, filename, desc)
File "/usr/local/Cellar/python3/3.4.3/Frameworks/Python.framework/Versions/3.4/lib/python3.4/imp.py", line 245, in load_module
return load_package(name, filename)
File "/usr/local/Cellar/python3/3.4.3/Frameworks/Python.framework/Versions/3.4/lib/python3.4/imp.py", line 217, in load_package
return methods.load()
File "<frozen importlib._bootstrap>", line 1220, in load
File "<frozen importlib._bootstrap>", line 1200, in _load_unlocked
File "<frozen importlib._bootstrap>", line 1129, in _exec
File "<frozen importlib._bootstrap>", line 1471, in exec_module
File "<frozen importlib._bootstrap>", line 321, in _call_with_frames_removed
File "/Users/shopetan/b3/springAB/sezemi/scikit-learn/sklearn/__init__.py", line 56, in <module>
from . import __check_build
File "/Users/shopetan/b3/springAB/sezemi/scikit-learn/sklearn/__check_build/__init__.py", line 46, in <module>
raise_build_error(e)
File "/Users/shopetan/b3/springAB/sezemi/scikit-learn/sklearn/__check_build/__init__.py", line 41, in raise_build_error
%s""" % (e, local_dir, ''.join(dir_content).strip(), msg))
ImportError: dlopen(/Users/shopetan/b3/springAB/sezemi/scikit-learn/sklearn/__check_build/_check_build.so, 2): Symbol not found: _PyString_FromFormat
Referenced from: /Users/shopetan/b3/springAB/sezemi/scikit-learn/sklearn/__check_build/_check_build.so
Expected in: flat namespace
in /Users/shopetan/b3/springAB/sezemi/scikit-learn/sklearn/__check_build/_check_build.so
___________________________________________________________________________
Contents of /Users/shopetan/b3/springAB/sezemi/scikit-learn/sklearn/__check_build:
__init__.py __pycache__ _check_build.c
_check_build.pyx _check_build.so setup.py
setup.pyc
___________________________________________________________________________
It seems that scikit-learn has not been built correctly.
If you have installed scikit-learn from source, please do not forget
to build the package before using it: run `python setup.py install` or
`make` in the source directory.
If you have used an installer, please check that it is suited for your
Python version, your operating system and your platform.
----------------------------------------------------------------------
Ran 1 test in 0.001s
FAILED (errors=1)
https://github.com/clear-code/sezemi-2015/issues/48#issuecomment-120562967 の余談
MacBook-Pro-8:scikit-learn shopetan$ python setup.py install
Partial import of sklearn during the build process.
blas_opt_info:
blas_mkl_info:
libraries mkl,vml,guide not found in ['/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib', '/usr/local/lib', '/usr/lib', '/sw/lib']
NOT AVAILABLE
openblas_info:
libraries openblas not found in ['/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib', '/usr/local/lib', '/usr/lib', '/sw/lib']
NOT AVAILABLE
atlas_3_10_blas_threads_info:
Setting PTATLAS=ATLAS
libraries tatlas not found in ['/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib', '/usr/local/lib', '/usr/lib', '/sw/lib']
NOT AVAILABLE
atlas_3_10_blas_info:
libraries satlas not found in ['/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib', '/usr/local/lib', '/usr/lib', '/sw/lib']
NOT AVAILABLE
atlas_blas_threads_info:
Setting PTATLAS=ATLAS
libraries ptf77blas,ptcblas,atlas not found in ['/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib', '/usr/local/lib', '/usr/lib', '/sw/lib']
NOT AVAILABLE
atlas_blas_info:
libraries f77blas,cblas,atlas not found in ['/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/lib', '/usr/local/lib', '/usr/lib', '/sw/lib']
NOT AVAILABLE
FOUND:
extra_link_args = ['-Wl,-framework', '-Wl,Accelerate']
define_macros = [('NO_ATLAS_INFO', 3)]
extra_compile_args = ['-msse3', '-DAPPLE_ACCELERATE_SGEMV_PATCH', '-I/System/Library/Frameworks/vecLib.framework/Headers']
running install
running build
running config_cc
unifing config_cc, config, build_clib, build_ext, build commands --compiler options
running config_fc
unifing config_fc, config, build_clib, build_ext, build commands --fcompiler options
running build_src
build_src
building library "libsvm-skl" sources
building extension "sklearn.__check_build._check_build" sources
building extension "sklearn.svm.libsvm" sources
building extension "sklearn.svm.liblinear" sources
building extension "sklearn.svm.libsvm_sparse" sources
building extension "sklearn.datasets._svmlight_format" sources
building extension "sklearn.feature_extraction._hashing" sources
building extension "sklearn.cluster._dbscan_inner" sources
building extension "sklearn.cluster._hierarchical" sources
building extension "sklearn.cluster._k_means" sources
building extension "sklearn.ensemble._gradient_boosting" sources
building extension "sklearn.utils.sparsetools._traversal" sources
building extension "sklearn.utils.sparsetools._graph_tools" sources
building extension "sklearn.utils.sparsefuncs_fast" sources
building extension "sklearn.utils.arrayfuncs" sources
building extension "sklearn.utils.murmurhash" sources
building extension "sklearn.utils.lgamma" sources
building extension "sklearn.utils.graph_shortest_path" sources
building extension "sklearn.utils.fast_dict" sources
building extension "sklearn.utils.seq_dataset" sources
building extension "sklearn.utils.weight_vector" sources
building extension "sklearn.utils._random" sources
building extension "sklearn.utils._logistic_sigmoid" sources
building extension "sklearn.neighbors.ball_tree" sources
building extension "sklearn.neighbors.kd_tree" sources
building extension "sklearn.neighbors.dist_metrics" sources
building extension "sklearn.neighbors.typedefs" sources
building extension "sklearn.manifold._utils" sources
building extension "sklearn.metrics.pairwise_fast" sources
building extension "sklearn.tree._tree" sources
building extension "sklearn.tree._utils" sources
building extension "sklearn.metrics/cluster.expected_mutual_info_fast" sources
building extension "sklearn._isotonic" sources
building extension "sklearn.linear_model.cd_fast" sources
building extension "sklearn.linear_model.sgd_fast" sources
building extension "sklearn.utils.sparsetools._traversal" sources
building extension "sklearn.utils.sparsetools._graph_tools" sources
building extension "sklearn.utils.sparsefuncs_fast" sources
building extension "sklearn.utils.arrayfuncs" sources
building extension "sklearn.utils.murmurhash" sources
building extension "sklearn.utils.lgamma" sources
building extension "sklearn.utils.graph_shortest_path" sources
building extension "sklearn.utils.fast_dict" sources
building extension "sklearn.utils.seq_dataset" sources
building extension "sklearn.utils.weight_vector" sources
building extension "sklearn.utils._random" sources
building extension "sklearn.utils._logistic_sigmoid" sources
building data_files sources
build_src: building npy-pkg config files
running build_py
running build_clib
customize UnixCCompiler
customize UnixCCompiler using build_clib
running build_ext
customize UnixCCompiler
customize UnixCCompiler using build_ext
customize UnixCCompiler
customize UnixCCompiler using build_ext
running install_lib
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/__check_build/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/__check_build
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/__check_build/_check_build.so -> /usr/local/lib/python2.7/site-packages/sklearn/__check_build
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/__check_build/setup.py -> /usr/local/lib/python2.7/site-packages/sklearn/__check_build
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/_build_utils.py -> /usr/local/lib/python2.7/site-packages/sklearn
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/_isotonic.so -> /usr/local/lib/python2.7/site-packages/sklearn
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/base.py -> /usr/local/lib/python2.7/site-packages/sklearn
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/calibration.py -> /usr/local/lib/python2.7/site-packages/sklearn
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/cluster
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/_dbscan_inner.so -> /usr/local/lib/python2.7/site-packages/sklearn/cluster
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/_feature_agglomeration.py -> /usr/local/lib/python2.7/site-packages/sklearn/cluster
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/_hierarchical.so -> /usr/local/lib/python2.7/site-packages/sklearn/cluster
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/_k_means.so -> /usr/local/lib/python2.7/site-packages/sklearn/cluster
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/affinity_propagation_.py -> /usr/local/lib/python2.7/site-packages/sklearn/cluster
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/bicluster.py -> /usr/local/lib/python2.7/site-packages/sklearn/cluster
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/birch.py -> /usr/local/lib/python2.7/site-packages/sklearn/cluster
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/dbscan_.py -> /usr/local/lib/python2.7/site-packages/sklearn/cluster
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/hierarchical.py -> /usr/local/lib/python2.7/site-packages/sklearn/cluster
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/k_means_.py -> /usr/local/lib/python2.7/site-packages/sklearn/cluster
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/mean_shift_.py -> /usr/local/lib/python2.7/site-packages/sklearn/cluster
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/setup.py -> /usr/local/lib/python2.7/site-packages/sklearn/cluster
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/spectral.py -> /usr/local/lib/python2.7/site-packages/sklearn/cluster
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/tests/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/cluster/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/tests/common.py -> /usr/local/lib/python2.7/site-packages/sklearn/cluster/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/tests/test_affinity_propagation.py -> /usr/local/lib/python2.7/site-packages/sklearn/cluster/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/tests/test_bicluster.py -> /usr/local/lib/python2.7/site-packages/sklearn/cluster/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/tests/test_birch.py -> /usr/local/lib/python2.7/site-packages/sklearn/cluster/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/tests/test_dbscan.py -> /usr/local/lib/python2.7/site-packages/sklearn/cluster/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/tests/test_hierarchical.py -> /usr/local/lib/python2.7/site-packages/sklearn/cluster/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/tests/test_k_means.py -> /usr/local/lib/python2.7/site-packages/sklearn/cluster/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/tests/test_mean_shift.py -> /usr/local/lib/python2.7/site-packages/sklearn/cluster/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cluster/tests/test_spectral.py -> /usr/local/lib/python2.7/site-packages/sklearn/cluster/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/covariance/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/covariance
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/covariance/empirical_covariance_.py -> /usr/local/lib/python2.7/site-packages/sklearn/covariance
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/covariance/graph_lasso_.py -> /usr/local/lib/python2.7/site-packages/sklearn/covariance
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/covariance/outlier_detection.py -> /usr/local/lib/python2.7/site-packages/sklearn/covariance
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/covariance/robust_covariance.py -> /usr/local/lib/python2.7/site-packages/sklearn/covariance
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/covariance/shrunk_covariance_.py -> /usr/local/lib/python2.7/site-packages/sklearn/covariance
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/covariance/tests/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/covariance/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/covariance/tests/test_covariance.py -> /usr/local/lib/python2.7/site-packages/sklearn/covariance/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/covariance/tests/test_graph_lasso.py -> /usr/local/lib/python2.7/site-packages/sklearn/covariance/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/covariance/tests/test_robust_covariance.py -> /usr/local/lib/python2.7/site-packages/sklearn/covariance/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cross_decomposition/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/cross_decomposition
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cross_decomposition/cca_.py -> /usr/local/lib/python2.7/site-packages/sklearn/cross_decomposition
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cross_decomposition/pls_.py -> /usr/local/lib/python2.7/site-packages/sklearn/cross_decomposition
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/cross_validation.py -> /usr/local/lib/python2.7/site-packages/sklearn
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/datasets
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/_svmlight_format.so -> /usr/local/lib/python2.7/site-packages/sklearn/datasets
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/base.py -> /usr/local/lib/python2.7/site-packages/sklearn/datasets
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/california_housing.py -> /usr/local/lib/python2.7/site-packages/sklearn/datasets
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/covtype.py -> /usr/local/lib/python2.7/site-packages/sklearn/datasets
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/lfw.py -> /usr/local/lib/python2.7/site-packages/sklearn/datasets
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/mlcomp.py -> /usr/local/lib/python2.7/site-packages/sklearn/datasets
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/mldata.py -> /usr/local/lib/python2.7/site-packages/sklearn/datasets
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/olivetti_faces.py -> /usr/local/lib/python2.7/site-packages/sklearn/datasets
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/samples_generator.py -> /usr/local/lib/python2.7/site-packages/sklearn/datasets
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/setup.py -> /usr/local/lib/python2.7/site-packages/sklearn/datasets
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/species_distributions.py -> /usr/local/lib/python2.7/site-packages/sklearn/datasets
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/svmlight_format.py -> /usr/local/lib/python2.7/site-packages/sklearn/datasets
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/tests/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/tests/test_20news.py -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/tests/test_base.py -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/tests/test_covtype.py -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/tests/test_lfw.py -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/tests/test_mldata.py -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/tests/test_samples_generator.py -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/tests/test_svmlight_format.py -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/datasets/twenty_newsgroups.py -> /usr/local/lib/python2.7/site-packages/sklearn/datasets
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/decomposition/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/decomposition
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/decomposition/base.py -> /usr/local/lib/python2.7/site-packages/sklearn/decomposition
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/decomposition/dict_learning.py -> /usr/local/lib/python2.7/site-packages/sklearn/decomposition
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/decomposition/factor_analysis.py -> /usr/local/lib/python2.7/site-packages/sklearn/decomposition
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/decomposition/fastica_.py -> /usr/local/lib/python2.7/site-packages/sklearn/decomposition
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/decomposition/incremental_pca.py -> /usr/local/lib/python2.7/site-packages/sklearn/decomposition
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/decomposition/kernel_pca.py -> /usr/local/lib/python2.7/site-packages/sklearn/decomposition
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/decomposition/nmf.py -> /usr/local/lib/python2.7/site-packages/sklearn/decomposition
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/decomposition/pca.py -> /usr/local/lib/python2.7/site-packages/sklearn/decomposition
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/decomposition/sparse_pca.py -> /usr/local/lib/python2.7/site-packages/sklearn/decomposition
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/decomposition/tests/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/decomposition/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/decomposition/tests/test_dict_learning.py -> /usr/local/lib/python2.7/site-packages/sklearn/decomposition/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/decomposition/tests/test_factor_analysis.py -> /usr/local/lib/python2.7/site-packages/sklearn/decomposition/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/decomposition/tests/test_fastica.py -> /usr/local/lib/python2.7/site-packages/sklearn/decomposition/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/decomposition/tests/test_incremental_pca.py -> /usr/local/lib/python2.7/site-packages/sklearn/decomposition/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/decomposition/tests/test_kernel_pca.py -> /usr/local/lib/python2.7/site-packages/sklearn/decomposition/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/decomposition/tests/test_nmf.py -> /usr/local/lib/python2.7/site-packages/sklearn/decomposition/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/decomposition/tests/test_pca.py -> /usr/local/lib/python2.7/site-packages/sklearn/decomposition/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/decomposition/tests/test_sparse_pca.py -> /usr/local/lib/python2.7/site-packages/sklearn/decomposition/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/decomposition/tests/test_truncated_svd.py -> /usr/local/lib/python2.7/site-packages/sklearn/decomposition/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/decomposition/truncated_svd.py -> /usr/local/lib/python2.7/site-packages/sklearn/decomposition
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/dummy.py -> /usr/local/lib/python2.7/site-packages/sklearn
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/ensemble/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/ensemble
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/ensemble/_gradient_boosting.so -> /usr/local/lib/python2.7/site-packages/sklearn/ensemble
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/ensemble/bagging.py -> /usr/local/lib/python2.7/site-packages/sklearn/ensemble
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/ensemble/base.py -> /usr/local/lib/python2.7/site-packages/sklearn/ensemble
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/ensemble/forest.py -> /usr/local/lib/python2.7/site-packages/sklearn/ensemble
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/ensemble/gradient_boosting.py -> /usr/local/lib/python2.7/site-packages/sklearn/ensemble
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/ensemble/partial_dependence.py -> /usr/local/lib/python2.7/site-packages/sklearn/ensemble
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/ensemble/setup.py -> /usr/local/lib/python2.7/site-packages/sklearn/ensemble
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/ensemble/tests/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/ensemble/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/ensemble/tests/test_bagging.py -> /usr/local/lib/python2.7/site-packages/sklearn/ensemble/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/ensemble/tests/test_base.py -> /usr/local/lib/python2.7/site-packages/sklearn/ensemble/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/ensemble/tests/test_forest.py -> /usr/local/lib/python2.7/site-packages/sklearn/ensemble/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/ensemble/tests/test_gradient_boosting.py -> /usr/local/lib/python2.7/site-packages/sklearn/ensemble/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/ensemble/tests/test_gradient_boosting_loss_functions.py -> /usr/local/lib/python2.7/site-packages/sklearn/ensemble/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/ensemble/tests/test_partial_dependence.py -> /usr/local/lib/python2.7/site-packages/sklearn/ensemble/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/ensemble/tests/test_voting_classifier.py -> /usr/local/lib/python2.7/site-packages/sklearn/ensemble/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/ensemble/tests/test_weight_boosting.py -> /usr/local/lib/python2.7/site-packages/sklearn/ensemble/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/ensemble/voting_classifier.py -> /usr/local/lib/python2.7/site-packages/sklearn/ensemble
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/ensemble/weight_boosting.py -> /usr/local/lib/python2.7/site-packages/sklearn/ensemble
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/externals/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/externals
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/externals/joblib/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/externals/joblib/_compat.py -> /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/externals/joblib/_memory_helpers.py -> /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/externals/joblib/_multiprocessing_helpers.py -> /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/externals/joblib/disk.py -> /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/externals/joblib/format_stack.py -> /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/externals/joblib/func_inspect.py -> /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/externals/joblib/hashing.py -> /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/externals/joblib/logger.py -> /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/externals/joblib/memory.py -> /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/externals/joblib/my_exceptions.py -> /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/externals/joblib/numpy_pickle.py -> /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/externals/joblib/parallel.py -> /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/externals/joblib/pool.py -> /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/externals/joblib/testing.py -> /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/externals/setup.py -> /usr/local/lib/python2.7/site-packages/sklearn/externals
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/externals/six.py -> /usr/local/lib/python2.7/site-packages/sklearn/externals
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/externals/test_externals_setup.py -> /usr/local/lib/python2.7/site-packages/sklearn/externals
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_extraction/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_extraction/_hashing.so -> /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_extraction/dict_vectorizer.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_extraction/hashing.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_extraction/image.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_extraction/setup.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_extraction/stop_words.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_extraction/tests/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_extraction/tests/test_dict_vectorizer.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_extraction/tests/test_feature_hasher.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_extraction/tests/test_image.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_extraction/tests/test_text.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_extraction/text.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_selection/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_selection
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_selection/base.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_selection
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_selection/from_model.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_selection
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_selection/rfe.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_selection
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_selection/tests/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_selection/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_selection/tests/test_base.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_selection/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_selection/tests/test_chi2.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_selection/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_selection/tests/test_feature_select.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_selection/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_selection/tests/test_from_model.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_selection/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_selection/tests/test_rfe.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_selection/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_selection/tests/test_variance_threshold.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_selection/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_selection/univariate_selection.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_selection
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/feature_selection/variance_threshold.py -> /usr/local/lib/python2.7/site-packages/sklearn/feature_selection
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/gaussian_process/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/gaussian_process
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/gaussian_process/correlation_models.py -> /usr/local/lib/python2.7/site-packages/sklearn/gaussian_process
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/gaussian_process/gaussian_process.py -> /usr/local/lib/python2.7/site-packages/sklearn/gaussian_process
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/gaussian_process/regression_models.py -> /usr/local/lib/python2.7/site-packages/sklearn/gaussian_process
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/gaussian_process/tests/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/gaussian_process/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/gaussian_process/tests/test_gaussian_process.py -> /usr/local/lib/python2.7/site-packages/sklearn/gaussian_process/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/grid_search.py -> /usr/local/lib/python2.7/site-packages/sklearn
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/isotonic.py -> /usr/local/lib/python2.7/site-packages/sklearn
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/kernel_approximation.py -> /usr/local/lib/python2.7/site-packages/sklearn
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/kernel_ridge.py -> /usr/local/lib/python2.7/site-packages/sklearn
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/lda.py -> /usr/local/lib/python2.7/site-packages/sklearn
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/learning_curve.py -> /usr/local/lib/python2.7/site-packages/sklearn
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/base.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/bayes.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/cd_fast.so -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/coordinate_descent.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/least_angle.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/logistic.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/omp.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/passive_aggressive.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/perceptron.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/randomized_l1.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/ransac.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/ridge.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/setup.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/sgd_fast.so -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/stochastic_gradient.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/tests/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/tests/test_base.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/tests/test_bayes.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/tests/test_coordinate_descent.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/tests/test_least_angle.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/tests/test_logistic.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/tests/test_omp.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/tests/test_passive_aggressive.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/tests/test_perceptron.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/tests/test_randomized_l1.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/tests/test_ransac.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/tests/test_ridge.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/tests/test_sgd.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/tests/test_sparse_coordinate_descent.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/tests/test_theil_sen.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/linear_model/theil_sen.py -> /usr/local/lib/python2.7/site-packages/sklearn/linear_model
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/manifold/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/manifold
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/manifold/_utils.so -> /usr/local/lib/python2.7/site-packages/sklearn/manifold
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/manifold/isomap.py -> /usr/local/lib/python2.7/site-packages/sklearn/manifold
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/manifold/locally_linear.py -> /usr/local/lib/python2.7/site-packages/sklearn/manifold
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/manifold/mds.py -> /usr/local/lib/python2.7/site-packages/sklearn/manifold
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/manifold/setup.py -> /usr/local/lib/python2.7/site-packages/sklearn/manifold
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/manifold/spectral_embedding_.py -> /usr/local/lib/python2.7/site-packages/sklearn/manifold
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/manifold/t_sne.py -> /usr/local/lib/python2.7/site-packages/sklearn/manifold
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/base.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/classification.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/cluster/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics/cluster
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/cluster/bicluster.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics/cluster
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/cluster/expected_mutual_info_fast.so -> /usr/local/lib/python2.7/site-packages/sklearn/metrics/cluster
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/cluster/setup.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics/cluster
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/cluster/supervised.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics/cluster
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/cluster/tests/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics/cluster/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/cluster/tests/test_bicluster.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics/cluster/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/cluster/tests/test_supervised.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics/cluster/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/cluster/tests/test_unsupervised.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics/cluster/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/cluster/unsupervised.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics/cluster
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/metrics.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/pairwise.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/pairwise_fast.so -> /usr/local/lib/python2.7/site-packages/sklearn/metrics
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/ranking.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/regression.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/scorer.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/setup.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/tests/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/tests/test_classification.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/tests/test_common.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/tests/test_pairwise.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/tests/test_ranking.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/tests/test_regression.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/metrics/tests/test_score_objects.py -> /usr/local/lib/python2.7/site-packages/sklearn/metrics/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/mixture/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/mixture
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/mixture/dpgmm.py -> /usr/local/lib/python2.7/site-packages/sklearn/mixture
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/mixture/gmm.py -> /usr/local/lib/python2.7/site-packages/sklearn/mixture
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/mixture/tests/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/mixture/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/mixture/tests/test_dpgmm.py -> /usr/local/lib/python2.7/site-packages/sklearn/mixture/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/mixture/tests/test_gmm.py -> /usr/local/lib/python2.7/site-packages/sklearn/mixture/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/multiclass.py -> /usr/local/lib/python2.7/site-packages/sklearn
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/naive_bayes.py -> /usr/local/lib/python2.7/site-packages/sklearn
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/neighbors/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/neighbors
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/neighbors/approximate.py -> /usr/local/lib/python2.7/site-packages/sklearn/neighbors
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/neighbors/ball_tree.so -> /usr/local/lib/python2.7/site-packages/sklearn/neighbors
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/neighbors/base.py -> /usr/local/lib/python2.7/site-packages/sklearn/neighbors
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/neighbors/classification.py -> /usr/local/lib/python2.7/site-packages/sklearn/neighbors
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/neighbors/dist_metrics.so -> /usr/local/lib/python2.7/site-packages/sklearn/neighbors
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/neighbors/graph.py -> /usr/local/lib/python2.7/site-packages/sklearn/neighbors
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/neighbors/kd_tree.so -> /usr/local/lib/python2.7/site-packages/sklearn/neighbors
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/neighbors/kde.py -> /usr/local/lib/python2.7/site-packages/sklearn/neighbors
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/neighbors/nearest_centroid.py -> /usr/local/lib/python2.7/site-packages/sklearn/neighbors
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/neighbors/regression.py -> /usr/local/lib/python2.7/site-packages/sklearn/neighbors
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/neighbors/setup.py -> /usr/local/lib/python2.7/site-packages/sklearn/neighbors
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/neighbors/typedefs.so -> /usr/local/lib/python2.7/site-packages/sklearn/neighbors
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/neighbors/unsupervised.py -> /usr/local/lib/python2.7/site-packages/sklearn/neighbors
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/neural_network/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/neural_network
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/neural_network/rbm.py -> /usr/local/lib/python2.7/site-packages/sklearn/neural_network
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/pipeline.py -> /usr/local/lib/python2.7/site-packages/sklearn
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/preprocessing/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/preprocessing
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/preprocessing/_weights.py -> /usr/local/lib/python2.7/site-packages/sklearn/preprocessing
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/preprocessing/data.py -> /usr/local/lib/python2.7/site-packages/sklearn/preprocessing
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/preprocessing/imputation.py -> /usr/local/lib/python2.7/site-packages/sklearn/preprocessing
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/preprocessing/label.py -> /usr/local/lib/python2.7/site-packages/sklearn/preprocessing
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/qda.py -> /usr/local/lib/python2.7/site-packages/sklearn
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/random_projection.py -> /usr/local/lib/python2.7/site-packages/sklearn
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/semi_supervised/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/semi_supervised
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/semi_supervised/label_propagation.py -> /usr/local/lib/python2.7/site-packages/sklearn/semi_supervised
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/setup.py -> /usr/local/lib/python2.7/site-packages/sklearn
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/svm/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/svm
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/svm/base.py -> /usr/local/lib/python2.7/site-packages/sklearn/svm
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/svm/bounds.py -> /usr/local/lib/python2.7/site-packages/sklearn/svm
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/svm/classes.py -> /usr/local/lib/python2.7/site-packages/sklearn/svm
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/svm/liblinear.so -> /usr/local/lib/python2.7/site-packages/sklearn/svm
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/svm/libsvm.so -> /usr/local/lib/python2.7/site-packages/sklearn/svm
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/svm/libsvm_sparse.so -> /usr/local/lib/python2.7/site-packages/sklearn/svm
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/svm/setup.py -> /usr/local/lib/python2.7/site-packages/sklearn/svm
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/svm/tests/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/svm/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/svm/tests/test_bounds.py -> /usr/local/lib/python2.7/site-packages/sklearn/svm/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/svm/tests/test_sparse.py -> /usr/local/lib/python2.7/site-packages/sklearn/svm/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/svm/tests/test_svm.py -> /usr/local/lib/python2.7/site-packages/sklearn/svm/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tests/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tests/test_base.py -> /usr/local/lib/python2.7/site-packages/sklearn/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tests/test_calibration.py -> /usr/local/lib/python2.7/site-packages/sklearn/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tests/test_check_build.py -> /usr/local/lib/python2.7/site-packages/sklearn/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tests/test_common.py -> /usr/local/lib/python2.7/site-packages/sklearn/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tests/test_cross_validation.py -> /usr/local/lib/python2.7/site-packages/sklearn/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tests/test_dummy.py -> /usr/local/lib/python2.7/site-packages/sklearn/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tests/test_grid_search.py -> /usr/local/lib/python2.7/site-packages/sklearn/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tests/test_init.py -> /usr/local/lib/python2.7/site-packages/sklearn/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tests/test_isotonic.py -> /usr/local/lib/python2.7/site-packages/sklearn/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tests/test_kernel_approximation.py -> /usr/local/lib/python2.7/site-packages/sklearn/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tests/test_kernel_ridge.py -> /usr/local/lib/python2.7/site-packages/sklearn/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tests/test_lda.py -> /usr/local/lib/python2.7/site-packages/sklearn/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tests/test_learning_curve.py -> /usr/local/lib/python2.7/site-packages/sklearn/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tests/test_metaestimators.py -> /usr/local/lib/python2.7/site-packages/sklearn/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tests/test_multiclass.py -> /usr/local/lib/python2.7/site-packages/sklearn/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tests/test_naive_bayes.py -> /usr/local/lib/python2.7/site-packages/sklearn/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tests/test_pipeline.py -> /usr/local/lib/python2.7/site-packages/sklearn/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tests/test_qda.py -> /usr/local/lib/python2.7/site-packages/sklearn/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tests/test_random_projection.py -> /usr/local/lib/python2.7/site-packages/sklearn/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tree/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/tree
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tree/_tree.so -> /usr/local/lib/python2.7/site-packages/sklearn/tree
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tree/_utils.so -> /usr/local/lib/python2.7/site-packages/sklearn/tree
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tree/export.py -> /usr/local/lib/python2.7/site-packages/sklearn/tree
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tree/setup.py -> /usr/local/lib/python2.7/site-packages/sklearn/tree
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tree/tests/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/tree/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tree/tests/test_export.py -> /usr/local/lib/python2.7/site-packages/sklearn/tree/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tree/tests/test_tree.py -> /usr/local/lib/python2.7/site-packages/sklearn/tree/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/tree/tree.py -> /usr/local/lib/python2.7/site-packages/sklearn/tree
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/_logistic_sigmoid.so -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/_random.so -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/_scipy_sparse_lsqr_backport.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/arpack.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/arrayfuncs.so -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/bench.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/class_weight.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/estimator_checks.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/extmath.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/fast_dict.so -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/fixes.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/graph.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/graph_shortest_path.so -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/lgamma.so -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/linear_assignment_.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/metaestimators.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/mocking.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/multiclass.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/murmurhash.so -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/optimize.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/random.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/seq_dataset.so -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/setup.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/sparsefuncs.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/sparsefuncs_fast.so -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/sparsetools/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/sparsetools
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/sparsetools/_graph_tools.so -> /usr/local/lib/python2.7/site-packages/sklearn/utils/sparsetools
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/sparsetools/_graph_validation.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/sparsetools
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/sparsetools/_traversal.so -> /usr/local/lib/python2.7/site-packages/sklearn/utils/sparsetools
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/sparsetools/setup.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/sparsetools
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/stats.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/testing.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/tests/__init__.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/tests/test_bench.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/tests/test_class_weight.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/tests/test_estimator_checks.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/tests/test_extmath.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/tests/test_fast_dict.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/tests/test_fixes.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/tests/test_graph.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/tests/test_linear_assignment.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/tests/test_metaestimators.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/tests/test_multiclass.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/tests/test_murmurhash.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/tests/test_optimize.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/tests/test_random.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/tests/test_shortest_path.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/tests/test_sparsefuncs.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/tests/test_stats.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/tests/test_testing.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/tests/test_utils.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/tests/test_validation.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils/tests
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/validation.py -> /usr/local/lib/python2.7/site-packages/sklearn/utils
copying build/lib.macosx-10.9-x86_64-2.7/sklearn/utils/weight_vector.so -> /usr/local/lib/python2.7/site-packages/sklearn/utils
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/__check_build/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/__check_build/setup.py to setup.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/_build_utils.py to _build_utils.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/base.py to base.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/calibration.py to calibration.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cluster/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cluster/_feature_agglomeration.py to _feature_agglomeration.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cluster/affinity_propagation_.py to affinity_propagation_.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cluster/bicluster.py to bicluster.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cluster/birch.py to birch.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cluster/dbscan_.py to dbscan_.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cluster/hierarchical.py to hierarchical.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cluster/k_means_.py to k_means_.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cluster/mean_shift_.py to mean_shift_.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cluster/setup.py to setup.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cluster/spectral.py to spectral.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cluster/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cluster/tests/common.py to common.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cluster/tests/test_affinity_propagation.py to test_affinity_propagation.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cluster/tests/test_bicluster.py to test_bicluster.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cluster/tests/test_birch.py to test_birch.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cluster/tests/test_dbscan.py to test_dbscan.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cluster/tests/test_hierarchical.py to test_hierarchical.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cluster/tests/test_k_means.py to test_k_means.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cluster/tests/test_mean_shift.py to test_mean_shift.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cluster/tests/test_spectral.py to test_spectral.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/covariance/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/covariance/empirical_covariance_.py to empirical_covariance_.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/covariance/graph_lasso_.py to graph_lasso_.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/covariance/outlier_detection.py to outlier_detection.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/covariance/robust_covariance.py to robust_covariance.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/covariance/shrunk_covariance_.py to shrunk_covariance_.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/covariance/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/covariance/tests/test_covariance.py to test_covariance.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/covariance/tests/test_graph_lasso.py to test_graph_lasso.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/covariance/tests/test_robust_covariance.py to test_robust_covariance.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cross_decomposition/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cross_decomposition/cca_.py to cca_.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cross_decomposition/pls_.py to pls_.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/cross_validation.py to cross_validation.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/datasets/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/datasets/base.py to base.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/datasets/california_housing.py to california_housing.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/datasets/covtype.py to covtype.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/datasets/lfw.py to lfw.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/datasets/mlcomp.py to mlcomp.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/datasets/mldata.py to mldata.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/datasets/olivetti_faces.py to olivetti_faces.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/datasets/samples_generator.py to samples_generator.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/datasets/setup.py to setup.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/datasets/species_distributions.py to species_distributions.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/datasets/svmlight_format.py to svmlight_format.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/datasets/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/datasets/tests/test_20news.py to test_20news.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/datasets/tests/test_base.py to test_base.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/datasets/tests/test_covtype.py to test_covtype.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/datasets/tests/test_lfw.py to test_lfw.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/datasets/tests/test_mldata.py to test_mldata.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/datasets/tests/test_samples_generator.py to test_samples_generator.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/datasets/tests/test_svmlight_format.py to test_svmlight_format.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/datasets/twenty_newsgroups.py to twenty_newsgroups.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/decomposition/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/decomposition/base.py to base.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/decomposition/dict_learning.py to dict_learning.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/decomposition/factor_analysis.py to factor_analysis.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/decomposition/fastica_.py to fastica_.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/decomposition/incremental_pca.py to incremental_pca.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/decomposition/kernel_pca.py to kernel_pca.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/decomposition/nmf.py to nmf.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/decomposition/pca.py to pca.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/decomposition/sparse_pca.py to sparse_pca.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/decomposition/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/decomposition/tests/test_dict_learning.py to test_dict_learning.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/decomposition/tests/test_factor_analysis.py to test_factor_analysis.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/decomposition/tests/test_fastica.py to test_fastica.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/decomposition/tests/test_incremental_pca.py to test_incremental_pca.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/decomposition/tests/test_kernel_pca.py to test_kernel_pca.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/decomposition/tests/test_nmf.py to test_nmf.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/decomposition/tests/test_pca.py to test_pca.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/decomposition/tests/test_sparse_pca.py to test_sparse_pca.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/decomposition/tests/test_truncated_svd.py to test_truncated_svd.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/decomposition/truncated_svd.py to truncated_svd.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/dummy.py to dummy.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/ensemble/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/ensemble/bagging.py to bagging.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/ensemble/base.py to base.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/ensemble/forest.py to forest.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/ensemble/gradient_boosting.py to gradient_boosting.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/ensemble/partial_dependence.py to partial_dependence.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/ensemble/setup.py to setup.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/ensemble/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/ensemble/tests/test_bagging.py to test_bagging.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/ensemble/tests/test_base.py to test_base.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/ensemble/tests/test_forest.py to test_forest.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/ensemble/tests/test_gradient_boosting.py to test_gradient_boosting.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/ensemble/tests/test_gradient_boosting_loss_functions.py to test_gradient_boosting_loss_functions.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/ensemble/tests/test_partial_dependence.py to test_partial_dependence.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/ensemble/tests/test_voting_classifier.py to test_voting_classifier.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/ensemble/tests/test_weight_boosting.py to test_weight_boosting.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/ensemble/voting_classifier.py to voting_classifier.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/ensemble/weight_boosting.py to weight_boosting.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/externals/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib/_compat.py to _compat.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib/_memory_helpers.py to _memory_helpers.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib/_multiprocessing_helpers.py to _multiprocessing_helpers.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib/disk.py to disk.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib/format_stack.py to format_stack.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib/func_inspect.py to func_inspect.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib/hashing.py to hashing.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib/logger.py to logger.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib/memory.py to memory.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib/my_exceptions.py to my_exceptions.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib/numpy_pickle.py to numpy_pickle.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib/parallel.py to parallel.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib/pool.py to pool.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/externals/joblib/testing.py to testing.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/externals/setup.py to setup.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/externals/six.py to six.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/externals/test_externals_setup.py to test_externals_setup.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction/dict_vectorizer.py to dict_vectorizer.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction/hashing.py to hashing.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction/image.py to image.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction/setup.py to setup.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction/stop_words.py to stop_words.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction/tests/test_dict_vectorizer.py to test_dict_vectorizer.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction/tests/test_feature_hasher.py to test_feature_hasher.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction/tests/test_image.py to test_image.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction/tests/test_text.py to test_text.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_extraction/text.py to text.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_selection/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_selection/base.py to base.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_selection/from_model.py to from_model.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_selection/rfe.py to rfe.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_selection/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_selection/tests/test_base.py to test_base.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_selection/tests/test_chi2.py to test_chi2.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_selection/tests/test_feature_select.py to test_feature_select.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_selection/tests/test_from_model.py to test_from_model.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_selection/tests/test_rfe.py to test_rfe.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_selection/tests/test_variance_threshold.py to test_variance_threshold.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_selection/univariate_selection.py to univariate_selection.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/feature_selection/variance_threshold.py to variance_threshold.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/gaussian_process/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/gaussian_process/correlation_models.py to correlation_models.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/gaussian_process/gaussian_process.py to gaussian_process.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/gaussian_process/regression_models.py to regression_models.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/gaussian_process/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/gaussian_process/tests/test_gaussian_process.py to test_gaussian_process.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/grid_search.py to grid_search.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/isotonic.py to isotonic.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/kernel_approximation.py to kernel_approximation.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/kernel_ridge.py to kernel_ridge.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/lda.py to lda.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/learning_curve.py to learning_curve.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/base.py to base.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/bayes.py to bayes.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/coordinate_descent.py to coordinate_descent.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/least_angle.py to least_angle.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/logistic.py to logistic.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/omp.py to omp.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/passive_aggressive.py to passive_aggressive.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/perceptron.py to perceptron.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/randomized_l1.py to randomized_l1.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/ransac.py to ransac.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/ridge.py to ridge.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/setup.py to setup.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/stochastic_gradient.py to stochastic_gradient.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests/test_base.py to test_base.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests/test_bayes.py to test_bayes.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests/test_coordinate_descent.py to test_coordinate_descent.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests/test_least_angle.py to test_least_angle.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests/test_logistic.py to test_logistic.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests/test_omp.py to test_omp.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests/test_passive_aggressive.py to test_passive_aggressive.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests/test_perceptron.py to test_perceptron.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests/test_randomized_l1.py to test_randomized_l1.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests/test_ransac.py to test_ransac.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests/test_ridge.py to test_ridge.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests/test_sgd.py to test_sgd.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests/test_sparse_coordinate_descent.py to test_sparse_coordinate_descent.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/tests/test_theil_sen.py to test_theil_sen.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/linear_model/theil_sen.py to theil_sen.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/manifold/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/manifold/isomap.py to isomap.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/manifold/locally_linear.py to locally_linear.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/manifold/mds.py to mds.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/manifold/setup.py to setup.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/manifold/spectral_embedding_.py to spectral_embedding_.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/manifold/t_sne.py to t_sne.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/base.py to base.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/classification.py to classification.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/cluster/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/cluster/bicluster.py to bicluster.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/cluster/setup.py to setup.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/cluster/supervised.py to supervised.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/cluster/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/cluster/tests/test_bicluster.py to test_bicluster.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/cluster/tests/test_supervised.py to test_supervised.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/cluster/tests/test_unsupervised.py to test_unsupervised.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/cluster/unsupervised.py to unsupervised.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/metrics.py to metrics.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/pairwise.py to pairwise.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/ranking.py to ranking.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/regression.py to regression.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/scorer.py to scorer.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/setup.py to setup.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/tests/test_classification.py to test_classification.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/tests/test_common.py to test_common.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/tests/test_pairwise.py to test_pairwise.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/tests/test_ranking.py to test_ranking.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/tests/test_regression.py to test_regression.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/metrics/tests/test_score_objects.py to test_score_objects.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/mixture/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/mixture/dpgmm.py to dpgmm.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/mixture/gmm.py to gmm.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/mixture/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/mixture/tests/test_dpgmm.py to test_dpgmm.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/mixture/tests/test_gmm.py to test_gmm.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/multiclass.py to multiclass.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/naive_bayes.py to naive_bayes.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/neighbors/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/neighbors/approximate.py to approximate.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/neighbors/base.py to base.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/neighbors/classification.py to classification.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/neighbors/graph.py to graph.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/neighbors/kde.py to kde.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/neighbors/nearest_centroid.py to nearest_centroid.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/neighbors/regression.py to regression.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/neighbors/setup.py to setup.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/neighbors/unsupervised.py to unsupervised.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/neural_network/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/neural_network/rbm.py to rbm.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/pipeline.py to pipeline.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/preprocessing/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/preprocessing/_weights.py to _weights.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/preprocessing/data.py to data.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/preprocessing/imputation.py to imputation.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/preprocessing/label.py to label.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/qda.py to qda.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/random_projection.py to random_projection.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/semi_supervised/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/semi_supervised/label_propagation.py to label_propagation.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/setup.py to setup.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/svm/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/svm/base.py to base.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/svm/bounds.py to bounds.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/svm/classes.py to classes.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/svm/setup.py to setup.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/svm/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/svm/tests/test_bounds.py to test_bounds.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/svm/tests/test_sparse.py to test_sparse.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/svm/tests/test_svm.py to test_svm.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tests/test_base.py to test_base.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tests/test_calibration.py to test_calibration.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tests/test_check_build.py to test_check_build.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tests/test_common.py to test_common.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tests/test_cross_validation.py to test_cross_validation.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tests/test_dummy.py to test_dummy.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tests/test_grid_search.py to test_grid_search.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tests/test_init.py to test_init.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tests/test_isotonic.py to test_isotonic.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tests/test_kernel_approximation.py to test_kernel_approximation.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tests/test_kernel_ridge.py to test_kernel_ridge.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tests/test_lda.py to test_lda.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tests/test_learning_curve.py to test_learning_curve.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tests/test_metaestimators.py to test_metaestimators.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tests/test_multiclass.py to test_multiclass.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tests/test_naive_bayes.py to test_naive_bayes.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tests/test_pipeline.py to test_pipeline.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tests/test_qda.py to test_qda.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tests/test_random_projection.py to test_random_projection.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tree/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tree/export.py to export.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tree/setup.py to setup.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tree/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tree/tests/test_export.py to test_export.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tree/tests/test_tree.py to test_tree.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/tree/tree.py to tree.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/_scipy_sparse_lsqr_backport.py to _scipy_sparse_lsqr_backport.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/arpack.py to arpack.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/bench.py to bench.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/class_weight.py to class_weight.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/estimator_checks.py to estimator_checks.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/extmath.py to extmath.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/fixes.py to fixes.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/graph.py to graph.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/linear_assignment_.py to linear_assignment_.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/metaestimators.py to metaestimators.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/mocking.py to mocking.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/multiclass.py to multiclass.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/optimize.py to optimize.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/random.py to random.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/setup.py to setup.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/sparsefuncs.py to sparsefuncs.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/sparsetools/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/sparsetools/_graph_validation.py to _graph_validation.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/sparsetools/setup.py to setup.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/stats.py to stats.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/testing.py to testing.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/tests/test_bench.py to test_bench.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/tests/test_class_weight.py to test_class_weight.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/tests/test_estimator_checks.py to test_estimator_checks.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/tests/test_extmath.py to test_extmath.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/tests/test_fast_dict.py to test_fast_dict.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/tests/test_fixes.py to test_fixes.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/tests/test_graph.py to test_graph.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/tests/test_linear_assignment.py to test_linear_assignment.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/tests/test_metaestimators.py to test_metaestimators.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/tests/test_multiclass.py to test_multiclass.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/tests/test_murmurhash.py to test_murmurhash.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/tests/test_optimize.py to test_optimize.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/tests/test_random.py to test_random.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/tests/test_shortest_path.py to test_shortest_path.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/tests/test_sparsefuncs.py to test_sparsefuncs.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/tests/test_stats.py to test_stats.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/tests/test_testing.py to test_testing.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/tests/test_utils.py to test_utils.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/tests/test_validation.py to test_validation.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sklearn/utils/validation.py to validation.pyc
running install_data
copying sklearn/datasets/tests/data/svmlight_invalid_order.txt -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/tests/data/
copying sklearn/datasets/tests/data/svmlight_invalid.txt -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/tests/data/
copying sklearn/datasets/tests/data/svmlight_classification.txt -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/tests/data/
copying sklearn/datasets/tests/data/svmlight_multilabel.txt -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/tests/data/
copying sklearn/datasets/data/diabetes_target.csv.gz -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/data/
copying sklearn/datasets/data/boston_house_prices.csv -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/data/
copying sklearn/datasets/data/diabetes_data.csv.gz -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/data/
copying sklearn/datasets/data/iris.csv -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/data/
copying sklearn/datasets/data/digits.csv.gz -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/data/
copying sklearn/datasets/data/linnerud_physiological.csv -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/data/
copying sklearn/datasets/data/linnerud_exercise.csv -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/data/
copying sklearn/datasets/images/flower.jpg -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/images/
copying sklearn/datasets/images/README.txt -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/images/
copying sklearn/datasets/images/china.jpg -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/images/
copying sklearn/datasets/descr/diabetes.rst -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/descr/
copying sklearn/datasets/descr/linnerud.rst -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/descr/
copying sklearn/datasets/descr/digits.rst -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/descr/
copying sklearn/datasets/descr/iris.rst -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/descr/
copying sklearn/datasets/descr/boston_house_prices.rst -> /usr/local/lib/python2.7/site-packages/sklearn/datasets/descr/
running install_egg_info
Removing /usr/local/lib/python2.7/site-packages/scikit_learn-0.17.dev0-py2.7.egg-info
Writing /usr/local/lib/python2.7/site-packages/scikit_learn-0.17.dev0-py2.7.egg-info
running install_clib
作業:テストを動かした. 動かなかった時↓ https://github.com/clear-code/sezemi-2015/issues/48#issuecomment-120562967
MacBook-Pro-8:scikit-learn shopetan$ nosetests -v sklearn/
がエラーが出ていたが, https://github.com/scikit-learn/scikit-learn/issues/3726 こちらを参考に,
$pip3 install nose
をして python3用にインストールし,
MacBook-Pro-8:scikit-learn shopetan$ nosetests -v sklearn/
で上手く言った.
これに関するドキュメントの記述は無かったので,これを追記したほうが良いのでは?
作業:PRを送った. https://github.com/scikit-learn/scikit-learn/pull/4951
ドキュメント本体の編集をしたほうが良いらしい. まずは,ドキュメント自体の編集方法を調べて ドキュメントの修正箇所の目処を立てる. その後コメントすべきかな
作業:PRでコメント中.
何を追加すべきか言及したほうが良い. 案1. https://github.com/scikit-learn/scikit-learn/blob/master/doc/install.rst を追加すべき. 案2. http://scikit-learn.org/dev/install.html を追加すべき. 案3. 何も追加しない.
私は案1を採用すべきだと考える. 詳細なインストール手順が示されているのであれば,README.rstにも示唆すべき. また,重要でないと考えるのなら,リンクを付与したほうがよりドキュメントも活発になるのでは?
また,重要でないと考えるのなら,リンクを付与したほうがよりドキュメントも活発になるのでは?
何が重要なのですか? 「詳細なインストール手順を示すこと」を言っていますか?
そうです. 「README.rst内にインストール方法を詳細に述べる事」を私は重要と考えました.
作業: 英語のコメントについて
意図の一貫性が取れるコメントをした方が良い.
やりたい事: 本家README.rst
内に,より詳細なインストール手順を示す.
対象:ライブラリの利用者や初めて開発に参加する人.
私は,より詳細なインストール手順を示したほうが良いと考えた.
このリンクが悪いならば,.doc/install.rst
を示したほうが良いのでは無いだろうか?
それは,ユーザや初めて開発に参加する人に役立つ.
作業:相手と意思疎通を測る. kouさんにテンプレートを教わったので,リンクを付与しておく. https://github.com/scikit-learn/scikit-learn/pull/4951#issuecomment-120687485
(全然関係ないけど)gem install でbug踏んだっぽい?
MacBook-Pro-8:OPAC shopetan$ gem install bundler
Ignoring debug_inspector-0.0.2 because its extensions are not built. Try: gem pristine debug_inspector --version 0.0.2
Ignoring executable-hooks-1.3.2 because its extensions are not built. Try: gem pristine executable-hooks --version 1.3.2
Ignoring ffi-1.9.8 because its extensions are not built. Try: gem pristine ffi --version 1.9.8
Ignoring ffi-1.9.6 because its extensions are not built. Try: gem pristine ffi --version 1.9.6
Ignoring gem-wrappers-1.2.7 because its extensions are not built. Try: gem pristine gem-wrappers --version 1.2.7
Ignoring http_parser.rb-0.6.0 because its extensions are not built. Try: gem pristine http_parser.rb --version 0.6.0
Ignoring json-1.8.3 because its extensions are not built. Try: gem pristine json --version 1.8.3
Ignoring json-1.8.2 because its extensions are not built. Try: gem pristine json --version 1.8.2
Ignoring libv8-3.16.14.11 because its extensions are not built. Try: gem pristine libv8 --version 3.16.14.11
Ignoring libv8-3.3.10.4 because its extensions are not built. Try: gem pristine libv8 --version 3.3.10.4
Ignoring pg-0.18.2 because its extensions are not built. Try: gem pristine pg --version 0.18.2
Ignoring ruby-xslt-0.9.9 because its extensions are not built. Try: gem pristine ruby-xslt --version 0.9.9
Ignoring sqlite3-1.3.10 because its extensions are not built. Try: gem pristine sqlite3 --version 1.3.10
Ignoring therubyracer-0.12.2 because its extensions are not built. Try: gem pristine therubyracer --version 0.12.2
Ignoring unf_ext-0.0.7.1 because its extensions are not built. Try: gem pristine unf_ext --version 0.0.7.1
Ignoring debug_inspector-0.0.2 because its extensions are not built. Try: gem pristine debug_inspector --version 0.0.2
Ignoring executable-hooks-1.3.2 because its extensions are not built. Try: gem pristine executable-hooks --version 1.3.2
Ignoring ffi-1.9.8 because its extensions are not built. Try: gem pristine ffi --version 1.9.8
Ignoring ffi-1.9.6 because its extensions are not built. Try: gem pristine ffi --version 1.9.6
Ignoring gem-wrappers-1.2.7 because its extensions are not built. Try: gem pristine gem-wrappers --version 1.2.7
Ignoring http_parser.rb-0.6.0 because its extensions are not built. Try: gem pristine http_parser.rb --version 0.6.0
Ignoring json-1.8.3 because its extensions are not built. Try: gem pristine json --version 1.8.3
Ignoring json-1.8.2 because its extensions are not built. Try: gem pristine json --version 1.8.2
Ignoring libv8-3.16.14.11 because its extensions are not built. Try: gem pristine libv8 --version 3.16.14.11
Ignoring libv8-3.3.10.4 because its extensions are not built. Try: gem pristine libv8 --version 3.3.10.4
Ignoring pg-0.18.2 because its extensions are not built. Try: gem pristine pg --version 0.18.2
Ignoring ruby-xslt-0.9.9 because its extensions are not built. Try: gem pristine ruby-xslt --version 0.9.9
Ignoring sqlite3-1.3.10 because its extensions are not built. Try: gem pristine sqlite3 --version 1.3.10
Ignoring therubyracer-0.12.2 because its extensions are not built. Try: gem pristine therubyracer --version 0.12.2
Ignoring unf_ext-0.0.7.1 because its extensions are not built. Try: gem pristine unf_ext --version 0.0.7.1
Error loading RubyGems plugin "/Users/shopetan/.rvm/gems/ruby-2.1.4@global/gems/executable-hooks-1.3.2/lib/rubygems_plugin.rb": cannot load such file -- executable-hooks/wrapper (LoadError)
Error loading RubyGems plugin "/Users/shopetan/.rvm/gems/ruby-2.1.4@global/gems/gem-wrappers-1.2.7/lib/rubygems_plugin.rb": cannot load such file -- gem-wrappers (LoadError)
Successfully installed bundler-1.10.5
/Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json/ext/parser.bundle: [BUG] Segmentation fault at 0x00000000000438
ruby 2.2.2p95 (2015-04-13 revision 50295) [x86_64-darwin13]
-- Crash Report log information --------------------------------------------
See Crash Report log file under the one of following:
* ~/Library/Logs/CrashReporter
* /Library/Logs/CrashReporter
* ~/Library/Logs/DiagnosticReports
* /Library/Logs/DiagnosticReports
for more details.
-- Control frame information -----------------------------------------------
c:0046 p:-17546044660022 s:0221 e:000220 TOP [FINISH]
c:0045 p:---- s:0219 e:000218 CFUNC :require
c:0044 p:0113 s:0215 e:000214 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54
c:0043 p:0009 s:0205 e:000204 CLASS /Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json/ext.rb:13
c:0042 p:0011 s:0203 e:000202 CLASS /Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json/ext.rb:12
c:0041 p:0056 s:0201 e:000200 TOP /Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json/ext.rb:9 [FINISH]
c:0040 p:---- s:0199 e:000198 CFUNC :require
c:0039 p:0113 s:0195 e:000194 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54
c:0038 p:0019 s:0185 e:000184 CLASS /Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json.rb:58
c:0037 p:0017 s:0183 e:000182 TOP /Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json.rb:54 [FINISH]
c:0036 p:---- s:0181 e:000180 CFUNC :require
c:0035 p:0113 s:0177 e:000176 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54
c:0034 p:0026 s:0167 e:000166 TOP /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/text.rb:16 [FINISH]
c:0033 p:0012 s:0165 e:000163 CLASS /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/code_object.rb:29
c:0032 p:0014 s:0162 e:000161 TOP /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/code_object.rb:27 [FINISH]
c:0031 p:0031 s:0160 e:000159 TOP /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/generator/markup.rb:59 [FINISH]
c:0030 p:---- s:0158 e:000157 CFUNC :require
c:0029 p:0113 s:0154 e:000153 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54
c:0028 p:0031 s:0144 e:000143 TOP /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/generator/darkfish.rb:6 [FINISH]
c:0027 p:---- s:0142 e:000141 CFUNC :require
c:0026 p:0113 s:0138 e:000137 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54
c:0025 p:0113 s:0128 e:000127 TOP /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rdoc.rb:567 [FINISH]
c:0024 p:---- s:0125 e:000124 CFUNC :require
c:0023 p:0113 s:0121 e:000120 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54
c:0022 p:0022 s:0111 e:000110 METHOD /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:73
c:0021 p:0009 s:0108 e:000107 METHOD /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:244
c:0020 p:0040 s:0105 e:000104 METHOD /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:151
c:0019 p:0015 s:0098 e:000097 BLOCK /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:56 [FINISH]
c:0018 p:---- s:0095 e:000094 CFUNC :each
c:0017 p:0049 s:0092 e:000091 METHOD /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:55 [FINISH]
c:0016 p:---- s:0081 e:000080 IFUNC
c:0015 p:---- s:0079 e:000078 CFUNC :call
c:0014 p:0012 s:0074 e:000073 BLOCK /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set.rb:188 [FINISH]
c:0013 p:---- s:0071 e:000070 CFUNC :each
c:0012 p:0286 s:0068 e:000066 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set.rb:187
c:0011 p:0161 s:0057 e:000055 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/commands/install_command.rb:249
c:0010 p:0036 s:0048 e:000047 BLOCK /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/commands/install_command.rb:299 [FINISH]
c:0009 p:---- s:0042 e:000041 CFUNC :each
c:0008 p:0014 s:0039 e:000038 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/commands/install_command.rb:295
c:0007 p:0095 s:0035 e:000034 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/commands/install_command.rb:202
c:0006 p:0064 s:0031 e:000030 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/command.rb:307
c:0005 p:0108 s:0026 e:000025 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/command_manager.rb:168
c:0004 p:0014 s:0019 e:000018 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/command_manager.rb:138
c:0003 p:0056 s:0013 e:000012 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/gem_runner.rb:54
c:0002 p:0115 s:0007 E:000138 EVAL /usr/local/bin/gem:21 [FINISH]
c:0001 p:0000 s:0002 E:001120 TOP [FINISH]
-- Ruby level backtrace information ----------------------------------------
/usr/local/bin/gem:21:in `<main>'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/gem_runner.rb:54:in `run'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/command_manager.rb:138:in `run'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/command_manager.rb:168:in `process_args'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/command.rb:307:in `invoke_with_build_args'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/commands/install_command.rb:202:in `execute'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/commands/install_command.rb:295:in `install_gems'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/commands/install_command.rb:295:in `each'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/commands/install_command.rb:299:in `block in install_gems'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/commands/install_command.rb:249:in `install_gem'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set.rb:187:in `install'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set.rb:187:in `each'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set.rb:188:in `block in install'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set.rb:188:in `call'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:55:in `generation_hook'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:55:in `each'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:56:in `block in generation_hook'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:151:in `generate'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:244:in `setup'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:73:in `load_rdoc'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rdoc.rb:567:in `<top (required)>'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/generator/darkfish.rb:6:in `<top (required)>'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/generator/markup.rb:59:in `<top (required)>'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/code_object.rb:27:in `<top (required)>'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/code_object.rb:29:in `<class:CodeObject>'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/text.rb:16:in `<top (required)>'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json.rb:54:in `<top (required)>'
/Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json.rb:58:in `<module:JSON>'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json/ext.rb:9:in `<top (required)>'
/Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json/ext.rb:12:in `<module:JSON>'
/Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json/ext.rb:13:in `<module:Ext>'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
-- Machine register context ------------------------------------------------
rax: 0x0000000000000000 rbx: 0x00007faa0e12c3c0 rcx: 0x0000000000000000
rdx: 0x0000000000000000 rdi: 0x0000000000000000 rsi: 0x0000000000000025
rbp: 0x00007fff5e612320 rsp: 0x00007fff5e612280 r8: 0x0000000000000000
r9: 0x00007fff5e612300 r10: 0x00007fff9840969f r11: 0x00007fff8f3be720
r12: 0x0000000000000000 r13: 0x0000000000000000 r14: 0x0000000000000000
r15: 0x0000000000000000 rip: 0x0000000101d4e41b rfl: 0x0000000000010202
-- C level backtrace information -------------------------------------------
0 libruby.2.2.0.dylib 0x0000000101738882 rb_print_backtrace + 29
1 libruby.2.2.0.dylib 0x000000010173897b rb_vm_bugreport + 142
2 libruby.2.2.0.dylib 0x000000010162330c rb_bug_context + 202
3 libruby.2.2.0.dylib 0x00000001016cf67c check_reserved_signal_ + 0
4 libsystem_platform.dylib 0x00007fff8bd8b5aa _sigtramp + 26
5 libruby.2.1.0.dylib 0x0000000101d4e41b newobj_of + 43
6 ??? 0x0000000000000000 0x0 + 0
-- Other runtime information -----------------------------------------------
* Loaded script: /usr/local/bin/gem
* Loaded features:
0 enumerator.so
1 rational.so
2 complex.so
3 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/enc/encdb.bundle
4 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/enc/trans/transdb.bundle
5 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/unicode_normalize.rb
6 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/rbconfig.rb
7 thread.rb
8 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/thread.bundle
9 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/compatibility.rb
10 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/defaults.rb
11 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/deprecate.rb
12 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/errors.rb
13 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/version.rb
14 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/requirement.rb
15 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/platform.rb
16 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/basic_specification.rb
17 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/stub_specification.rb
18 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/util/stringio.rb
19 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/specification.rb
20 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/exceptions.rb
21 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rubygems/defaults/operating_system.rb
22 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_gem.rb
23 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/monitor.rb
24 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb
25 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems.rb
26 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/optparse.rb
27 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/io/console.bundle
28 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/user_interaction.rb
29 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/command.rb
30 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/command_manager.rb
31 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/etc.bundle
32 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/config_file.rb
33 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/path_support.rb
34 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/dependency.rb
35 /Users/shopetan/.rvm/gems/ruby-2.1.4@global/gems/executable-hooks-1.3.2/lib/executable-hooks/specification.rb
36 /Users/shopetan/.rvm/gems/ruby-2.1.4@global/gems/gem-wrappers-1.2.7/lib/gem-wrappers/specification.rb
37 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/gem_runner.rb
38 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/exception.rb
39 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/syntax_error.rb
40 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/psych.bundle
41 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/stringio.bundle
42 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/omap.rb
43 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/set.rb
44 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/class_loader.rb
45 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/strscan.bundle
46 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/scalar_scanner.rb
47 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/nodes/node.rb
48 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/nodes/stream.rb
49 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/nodes/document.rb
50 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/nodes/sequence.rb
51 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/nodes/scalar.rb
52 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/nodes/mapping.rb
53 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/nodes/alias.rb
54 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/nodes.rb
55 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/streaming.rb
56 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/visitors/visitor.rb
57 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/visitors/to_ruby.rb
58 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/visitors/emitter.rb
59 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/handler.rb
60 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/tree_builder.rb
61 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/visitors/yaml_tree.rb
62 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/json/ruby_events.rb
63 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/visitors/json_tree.rb
64 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/visitors/depth_first.rb
65 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/visitors.rb
66 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/parser.rb
67 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/coder.rb
68 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/core_ext.rb
69 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/date_core.bundle
70 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/date.rb
71 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/deprecated.rb
72 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/stream.rb
73 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/json/yaml_events.rb
74 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/json/tree_builder.rb
75 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/json/stream.rb
76 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/handlers/document_stream.rb
77 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych.rb
78 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/psych_additions.rb
79 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/psych_tree.rb
80 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/yaml.rb
81 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/syck_hack.rb
82 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/timeout.rb
83 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/install_update_options.rb
84 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/tsort.rb
85 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/dependency_list.rb
86 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/fileutils.rb
87 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/digest.bundle
88 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/digest.rb
89 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/openssl.bundle
90 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/openssl/bn.rb
91 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/openssl/cipher.rb
92 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/openssl/config.rb
93 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/openssl/digest.rb
94 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/openssl/x509.rb
95 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/openssl/buffering.rb
96 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/fcntl.bundle
97 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/openssl/ssl.rb
98 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/openssl.rb
99 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/security/policy.rb
100 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/security/policies.rb
101 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/security/trust_dir.rb
102 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/security/signer.rb
103 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/security.rb
104 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/zlib.bundle
105 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/package/digest_io.rb
106 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/package/source.rb
107 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/package/file_source.rb
108 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/package/io_source.rb
109 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/package/old.rb
110 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/package/tar_header.rb
111 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/package/tar_reader/entry.rb
112 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/package/tar_reader.rb
113 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/package/tar_writer.rb
114 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/package.rb
115 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/ext/build_error.rb
116 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/ext/builder.rb
117 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/ext/configure_builder.rb
118 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/delegate.rb
119 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/tmpdir.rb
120 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/tempfile.rb
121 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/ext/ext_conf_builder.rb
122 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/ext/rake_builder.rb
123 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/ext/cmake_builder.rb
124 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/ext.rb
125 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/installer.rb
126 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/socket.bundle
127 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/socket.rb
128 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/protocol.rb
129 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri/rfc2396_parser.rb
130 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri/rfc3986_parser.rb
131 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri/common.rb
132 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri/generic.rb
133 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri/ftp.rb
134 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri/http.rb
135 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri/https.rb
136 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri/ldap.rb
137 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri/ldaps.rb
138 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri/mailto.rb
139 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri.rb
140 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/http/exceptions.rb
141 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/http/header.rb
142 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/enc/windows_31j.bundle
143 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/http/generic_request.rb
144 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/http/request.rb
145 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/http/requests.rb
146 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/http/response.rb
147 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/http/responses.rb
148 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/http/proxy_delta.rb
149 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/http/backward.rb
150 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/http.rb
151 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/time.rb
152 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request/http_pool.rb
153 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request/https_pool.rb
154 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request/connection_pools.rb
155 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request.rb
156 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/cgi/core.rb
157 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/cgi/util.rb
158 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/cgi/cookie.rb
159 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/cgi.rb
160 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/uri_formatter.rb
161 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/securerandom.rb
162 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/resolv.rb
163 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/remote_fetcher.rb
164 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/text.rb
165 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/name_tuple.rb
166 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/spec_fetcher.rb
167 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/util.rb
168 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/source/git.rb
169 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/source/installed.rb
170 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/source/specific_file.rb
171 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/source/local.rb
172 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/source/lock.rb
173 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/source/vendor.rb
174 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/source.rb
175 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/available_set.rb
176 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/dependency_installer.rb
177 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/local_remote_options.rb
178 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/validator.rb
179 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/version_option.rb
180 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/commands/install_command.rb
181 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/install_message.rb
182 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set/gem_dependency_api.rb
183 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set/lockfile/parser.rb
184 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set/lockfile/tokenizer.rb
185 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set/lockfile.rb
186 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set.rb
187 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/util/list.rb
188 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/activation_request.rb
189 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/conflict.rb
190 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/dependency_request.rb
191 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/requirement_list.rb
192 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/stats.rb
193 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/set.rb
194 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/api_set.rb
195 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/composed_set.rb
196 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/best_set.rb
197 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/current_set.rb
198 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/git_set.rb
199 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/index_set.rb
200 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/installer_set.rb
201 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/lock_set.rb
202 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/vendor_set.rb
203 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/specification.rb
204 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/spec_specification.rb
205 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/api_specification.rb
206 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/git_specification.rb
207 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/index_specification.rb
208 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/installed_specification.rb
209 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/local_specification.rb
210 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/lock_specification.rb
211 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/vendor_specification.rb
212 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver.rb
213 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc.rb
214 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb
215 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/rdoc.rb
216 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/source_list.rb
217 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/https.rb
218 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/enc/utf_16le.bundle
219 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/enc/utf_16be.bundle
220 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/find.rb
221 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/pathname.bundle
222 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/pathname.rb
223 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/erb.rb
224 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/generator.rb
225 /Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json/version.rb
226 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/ostruct.rb
227 /Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json/generic_object.rb
228 /Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json/common.rb
[NOTE]
You may have encountered a bug in the Ruby interpreter or extension libraries.
Bug reports are welcome.
Don't forget to include the above Crash Report log file.
For details: http://www.ruby-lang.org/bugreport.html
gem周りのエラーか?
MacBook-Pro-8:OPAC shopetan$ gem install curb
Ignoring debug_inspector-0.0.2 because its extensions are not built. Try: gem pristine debug_inspector --version 0.0.2
Ignoring executable-hooks-1.3.2 because its extensions are not built. Try: gem pristine executable-hooks --version 1.3.2
Ignoring ffi-1.9.8 because its extensions are not built. Try: gem pristine ffi --version 1.9.8
Ignoring ffi-1.9.6 because its extensions are not built. Try: gem pristine ffi --version 1.9.6
Ignoring gem-wrappers-1.2.7 because its extensions are not built. Try: gem pristine gem-wrappers --version 1.2.7
Ignoring http_parser.rb-0.6.0 because its extensions are not built. Try: gem pristine http_parser.rb --version 0.6.0
Ignoring json-1.8.3 because its extensions are not built. Try: gem pristine json --version 1.8.3
Ignoring json-1.8.2 because its extensions are not built. Try: gem pristine json --version 1.8.2
Ignoring libv8-3.16.14.11 because its extensions are not built. Try: gem pristine libv8 --version 3.16.14.11
Ignoring libv8-3.3.10.4 because its extensions are not built. Try: gem pristine libv8 --version 3.3.10.4
Ignoring pg-0.18.2 because its extensions are not built. Try: gem pristine pg --version 0.18.2
Ignoring ruby-xslt-0.9.9 because its extensions are not built. Try: gem pristine ruby-xslt --version 0.9.9
Ignoring sqlite3-1.3.10 because its extensions are not built. Try: gem pristine sqlite3 --version 1.3.10
Ignoring therubyracer-0.12.2 because its extensions are not built. Try: gem pristine therubyracer --version 0.12.2
Ignoring unf_ext-0.0.7.1 because its extensions are not built. Try: gem pristine unf_ext --version 0.0.7.1
Ignoring debug_inspector-0.0.2 because its extensions are not built. Try: gem pristine debug_inspector --version 0.0.2
Ignoring executable-hooks-1.3.2 because its extensions are not built. Try: gem pristine executable-hooks --version 1.3.2
Ignoring ffi-1.9.8 because its extensions are not built. Try: gem pristine ffi --version 1.9.8
Ignoring ffi-1.9.6 because its extensions are not built. Try: gem pristine ffi --version 1.9.6
Ignoring gem-wrappers-1.2.7 because its extensions are not built. Try: gem pristine gem-wrappers --version 1.2.7
Ignoring http_parser.rb-0.6.0 because its extensions are not built. Try: gem pristine http_parser.rb --version 0.6.0
Ignoring json-1.8.3 because its extensions are not built. Try: gem pristine json --version 1.8.3
Ignoring json-1.8.2 because its extensions are not built. Try: gem pristine json --version 1.8.2
Ignoring libv8-3.16.14.11 because its extensions are not built. Try: gem pristine libv8 --version 3.16.14.11
Ignoring libv8-3.3.10.4 because its extensions are not built. Try: gem pristine libv8 --version 3.3.10.4
Ignoring pg-0.18.2 because its extensions are not built. Try: gem pristine pg --version 0.18.2
Ignoring ruby-xslt-0.9.9 because its extensions are not built. Try: gem pristine ruby-xslt --version 0.9.9
Ignoring sqlite3-1.3.10 because its extensions are not built. Try: gem pristine sqlite3 --version 1.3.10
Ignoring therubyracer-0.12.2 because its extensions are not built. Try: gem pristine therubyracer --version 0.12.2
Ignoring unf_ext-0.0.7.1 because its extensions are not built. Try: gem pristine unf_ext --version 0.0.7.1
Error loading RubyGems plugin "/Users/shopetan/.rvm/gems/ruby-2.1.4@global/gems/executable-hooks-1.3.2/lib/rubygems_plugin.rb": cannot load such file -- executable-hooks/wrapper (LoadError)
Error loading RubyGems plugin "/Users/shopetan/.rvm/gems/ruby-2.1.4@global/gems/gem-wrappers-1.2.7/lib/rubygems_plugin.rb": cannot load such file -- gem-wrappers (LoadError)
Building native extensions. This could take a while...
Successfully installed curb-0.8.8
/Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json/ext/parser.bundle: [BUG] Segmentation fault at 0x00000000000438
ruby 2.2.2p95 (2015-04-13 revision 50295) [x86_64-darwin13]
-- Crash Report log information --------------------------------------------
See Crash Report log file under the one of following:
* ~/Library/Logs/CrashReporter
* /Library/Logs/CrashReporter
* ~/Library/Logs/DiagnosticReports
* /Library/Logs/DiagnosticReports
for more details.
-- Control frame information -----------------------------------------------
c:0046 p:-17536611598898 s:0221 e:000220 TOP [FINISH]
c:0045 p:---- s:0219 e:000218 CFUNC :require
c:0044 p:0113 s:0215 e:000214 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54
c:0043 p:0009 s:0205 e:000204 CLASS /Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json/ext.rb:13
c:0042 p:0011 s:0203 e:000202 CLASS /Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json/ext.rb:12
c:0041 p:0056 s:0201 e:000200 TOP /Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json/ext.rb:9 [FINISH]
c:0040 p:---- s:0199 e:000198 CFUNC :require
c:0039 p:0113 s:0195 e:000194 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54
c:0038 p:0019 s:0185 e:000184 CLASS /Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json.rb:58
c:0037 p:0017 s:0183 e:000182 TOP /Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json.rb:54 [FINISH]
c:0036 p:---- s:0181 e:000180 CFUNC :require
c:0035 p:0113 s:0177 e:000176 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54
c:0034 p:0026 s:0167 e:000166 TOP /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/text.rb:16 [FINISH]
c:0033 p:0012 s:0165 e:000163 CLASS /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/code_object.rb:29
c:0032 p:0014 s:0162 e:000161 TOP /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/code_object.rb:27 [FINISH]
c:0031 p:0031 s:0160 e:000159 TOP /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/generator/markup.rb:59 [FINISH]
c:0030 p:---- s:0158 e:000157 CFUNC :require
c:0029 p:0113 s:0154 e:000153 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54
c:0028 p:0031 s:0144 e:000143 TOP /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/generator/darkfish.rb:6 [FINISH]
c:0027 p:---- s:0142 e:000141 CFUNC :require
c:0026 p:0113 s:0138 e:000137 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54
c:0025 p:0113 s:0128 e:000127 TOP /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rdoc.rb:567 [FINISH]
c:0024 p:---- s:0125 e:000124 CFUNC :require
c:0023 p:0113 s:0121 e:000120 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54
c:0022 p:0022 s:0111 e:000110 METHOD /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:73
c:0021 p:0009 s:0108 e:000107 METHOD /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:244
c:0020 p:0040 s:0105 e:000104 METHOD /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:151
c:0019 p:0015 s:0098 e:000097 BLOCK /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:56 [FINISH]
c:0018 p:---- s:0095 e:000094 CFUNC :each
c:0017 p:0049 s:0092 e:000091 METHOD /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:55 [FINISH]
c:0016 p:---- s:0081 e:000080 IFUNC
c:0015 p:---- s:0079 e:000078 CFUNC :call
c:0014 p:0012 s:0074 e:000073 BLOCK /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set.rb:188 [FINISH]
c:0013 p:---- s:0071 e:000070 CFUNC :each
c:0012 p:0286 s:0068 e:000066 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set.rb:187
c:0011 p:0161 s:0057 e:000055 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/commands/install_command.rb:249
c:0010 p:0036 s:0048 e:000047 BLOCK /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/commands/install_command.rb:299 [FINISH]
c:0009 p:---- s:0042 e:000041 CFUNC :each
c:0008 p:0014 s:0039 e:000038 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/commands/install_command.rb:295
c:0007 p:0095 s:0035 e:000034 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/commands/install_command.rb:202
c:0006 p:0064 s:0031 e:000030 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/command.rb:307
c:0005 p:0108 s:0026 e:000025 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/command_manager.rb:168
c:0004 p:0014 s:0019 e:000018 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/command_manager.rb:138
c:0003 p:0056 s:0013 e:000012 METHOD /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/gem_runner.rb:54
c:0002 p:0115 s:0007 E:0004a8 EVAL /usr/local/bin/gem:21 [FINISH]
c:0001 p:0000 s:0002 E:000fc0 TOP [FINISH]
-- Ruby level backtrace information ----------------------------------------
/usr/local/bin/gem:21:in `<main>'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/gem_runner.rb:54:in `run'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/command_manager.rb:138:in `run'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/command_manager.rb:168:in `process_args'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/command.rb:307:in `invoke_with_build_args'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/commands/install_command.rb:202:in `execute'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/commands/install_command.rb:295:in `install_gems'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/commands/install_command.rb:295:in `each'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/commands/install_command.rb:299:in `block in install_gems'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/commands/install_command.rb:249:in `install_gem'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set.rb:187:in `install'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set.rb:187:in `each'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set.rb:188:in `block in install'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set.rb:188:in `call'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:55:in `generation_hook'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:55:in `each'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:56:in `block in generation_hook'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:151:in `generate'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:244:in `setup'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb:73:in `load_rdoc'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rdoc.rb:567:in `<top (required)>'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/generator/darkfish.rb:6:in `<top (required)>'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/generator/markup.rb:59:in `<top (required)>'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/code_object.rb:27:in `<top (required)>'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/code_object.rb:29:in `<class:CodeObject>'
/usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/text.rb:16:in `<top (required)>'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json.rb:54:in `<top (required)>'
/Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json.rb:58:in `<module:JSON>'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json/ext.rb:9:in `<top (required)>'
/Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json/ext.rb:12:in `<module:JSON>'
/Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json/ext.rb:13:in `<module:Ext>'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:54:in `require'
-- Machine register context ------------------------------------------------
rax: 0x0000000000000000 rbx: 0x00007f987d160bc0 rcx: 0x0000000000000000
rdx: 0x0000000000000000 rdi: 0x0000000000000000 rsi: 0x0000000000000025
rbp: 0x00007fff50997320 rsp: 0x00007fff50997280 r8: 0x0000000000000000
r9: 0x00007fff50997300 r10: 0x00007fff9840969f r11: 0x00007fff8f3be720
r12: 0x0000000000000000 r13: 0x0000000000000000 r14: 0x0000000000000000
r15: 0x0000000000000000 rip: 0x000000010f9ee41b rfl: 0x0000000000010202
-- C level backtrace information -------------------------------------------
0 libruby.2.2.0.dylib 0x000000010f3b3882 rb_print_backtrace + 29
1 libruby.2.2.0.dylib 0x000000010f3b397b rb_vm_bugreport + 142
2 libruby.2.2.0.dylib 0x000000010f29e30c rb_bug_context + 202
3 libruby.2.2.0.dylib 0x000000010f34a67c check_reserved_signal_ + 0
4 libsystem_platform.dylib 0x00007fff8bd8b5aa _sigtramp + 26
5 libruby.2.1.0.dylib 0x000000010f9ee41b newobj_of + 43
6 ??? 0x0000000000000000 0x0 + 0
-- Other runtime information -----------------------------------------------
* Loaded script: /usr/local/bin/gem
* Loaded features:
0 enumerator.so
1 rational.so
2 complex.so
3 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/enc/encdb.bundle
4 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/enc/trans/transdb.bundle
5 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/unicode_normalize.rb
6 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/rbconfig.rb
7 thread.rb
8 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/thread.bundle
9 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/compatibility.rb
10 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/defaults.rb
11 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/deprecate.rb
12 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/errors.rb
13 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/version.rb
14 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/requirement.rb
15 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/platform.rb
16 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/basic_specification.rb
17 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/stub_specification.rb
18 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/util/stringio.rb
19 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/specification.rb
20 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/exceptions.rb
21 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rubygems/defaults/operating_system.rb
22 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_gem.rb
23 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/monitor.rb
24 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb
25 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems.rb
26 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/optparse.rb
27 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/io/console.bundle
28 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/user_interaction.rb
29 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/command.rb
30 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/command_manager.rb
31 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/etc.bundle
32 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/config_file.rb
33 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/path_support.rb
34 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/dependency.rb
35 /Users/shopetan/.rvm/gems/ruby-2.1.4@global/gems/executable-hooks-1.3.2/lib/executable-hooks/specification.rb
36 /Users/shopetan/.rvm/gems/ruby-2.1.4@global/gems/gem-wrappers-1.2.7/lib/gem-wrappers/specification.rb
37 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/gem_runner.rb
38 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/exception.rb
39 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/syntax_error.rb
40 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/psych.bundle
41 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/stringio.bundle
42 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/omap.rb
43 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/set.rb
44 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/class_loader.rb
45 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/strscan.bundle
46 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/scalar_scanner.rb
47 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/nodes/node.rb
48 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/nodes/stream.rb
49 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/nodes/document.rb
50 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/nodes/sequence.rb
51 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/nodes/scalar.rb
52 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/nodes/mapping.rb
53 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/nodes/alias.rb
54 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/nodes.rb
55 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/streaming.rb
56 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/visitors/visitor.rb
57 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/visitors/to_ruby.rb
58 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/visitors/emitter.rb
59 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/handler.rb
60 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/tree_builder.rb
61 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/visitors/yaml_tree.rb
62 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/json/ruby_events.rb
63 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/visitors/json_tree.rb
64 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/visitors/depth_first.rb
65 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/visitors.rb
66 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/parser.rb
67 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/coder.rb
68 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/core_ext.rb
69 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/date_core.bundle
70 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/date.rb
71 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/deprecated.rb
72 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/stream.rb
73 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/json/yaml_events.rb
74 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/json/tree_builder.rb
75 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/json/stream.rb
76 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych/handlers/document_stream.rb
77 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/psych.rb
78 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/psych_additions.rb
79 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/psych_tree.rb
80 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/yaml.rb
81 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/syck_hack.rb
82 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/timeout.rb
83 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/install_update_options.rb
84 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/tsort.rb
85 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/dependency_list.rb
86 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/fileutils.rb
87 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/digest.bundle
88 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/digest.rb
89 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/openssl.bundle
90 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/openssl/bn.rb
91 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/openssl/cipher.rb
92 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/openssl/config.rb
93 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/openssl/digest.rb
94 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/openssl/x509.rb
95 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/openssl/buffering.rb
96 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/fcntl.bundle
97 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/openssl/ssl.rb
98 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/openssl.rb
99 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/security/policy.rb
100 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/security/policies.rb
101 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/security/trust_dir.rb
102 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/security/signer.rb
103 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/security.rb
104 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/zlib.bundle
105 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/package/digest_io.rb
106 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/package/source.rb
107 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/package/file_source.rb
108 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/package/io_source.rb
109 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/package/old.rb
110 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/package/tar_header.rb
111 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/package/tar_reader/entry.rb
112 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/package/tar_reader.rb
113 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/package/tar_writer.rb
114 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/package.rb
115 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/ext/build_error.rb
116 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/ext/builder.rb
117 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/ext/configure_builder.rb
118 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/delegate.rb
119 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/tmpdir.rb
120 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/tempfile.rb
121 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/ext/ext_conf_builder.rb
122 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/ext/rake_builder.rb
123 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/ext/cmake_builder.rb
124 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/ext.rb
125 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/installer.rb
126 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/socket.bundle
127 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/socket.rb
128 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/protocol.rb
129 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri/rfc2396_parser.rb
130 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri/rfc3986_parser.rb
131 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri/common.rb
132 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri/generic.rb
133 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri/ftp.rb
134 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri/http.rb
135 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri/https.rb
136 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri/ldap.rb
137 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri/ldaps.rb
138 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri/mailto.rb
139 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/uri.rb
140 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/http/exceptions.rb
141 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/http/header.rb
142 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/enc/windows_31j.bundle
143 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/http/generic_request.rb
144 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/http/request.rb
145 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/http/requests.rb
146 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/http/response.rb
147 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/http/responses.rb
148 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/http/proxy_delta.rb
149 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/http/backward.rb
150 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/http.rb
151 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/time.rb
152 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request/http_pool.rb
153 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request/https_pool.rb
154 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request/connection_pools.rb
155 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request.rb
156 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/cgi/core.rb
157 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/cgi/util.rb
158 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/cgi/cookie.rb
159 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/cgi.rb
160 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/uri_formatter.rb
161 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/securerandom.rb
162 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/resolv.rb
163 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/remote_fetcher.rb
164 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/text.rb
165 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/name_tuple.rb
166 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/spec_fetcher.rb
167 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/util.rb
168 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/source/git.rb
169 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/source/installed.rb
170 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/source/specific_file.rb
171 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/source/local.rb
172 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/source/lock.rb
173 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/source/vendor.rb
174 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/source.rb
175 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/available_set.rb
176 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/dependency_installer.rb
177 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/local_remote_options.rb
178 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/validator.rb
179 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/version_option.rb
180 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/commands/install_command.rb
181 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/install_message.rb
182 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set/gem_dependency_api.rb
183 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set/lockfile/parser.rb
184 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set/lockfile/tokenizer.rb
185 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set/lockfile.rb
186 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/request_set.rb
187 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/util/list.rb
188 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/activation_request.rb
189 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/conflict.rb
190 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/dependency_request.rb
191 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/requirement_list.rb
192 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/stats.rb
193 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/set.rb
194 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/api_set.rb
195 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/composed_set.rb
196 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/best_set.rb
197 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/current_set.rb
198 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/git_set.rb
199 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/index_set.rb
200 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/installer_set.rb
201 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/lock_set.rb
202 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/vendor_set.rb
203 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/specification.rb
204 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/spec_specification.rb
205 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/api_specification.rb
206 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/git_specification.rb
207 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/index_specification.rb
208 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/installed_specification.rb
209 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/local_specification.rb
210 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/lock_specification.rb
211 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver/vendor_specification.rb
212 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/resolver.rb
213 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc.rb
214 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/rubygems_hook.rb
215 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/rdoc.rb
216 /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/source_list.rb
217 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/net/https.rb
218 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/enc/utf_16le.bundle
219 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/enc/utf_16be.bundle
220 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/find.rb
221 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/x86_64-darwin13/pathname.bundle
222 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/pathname.rb
223 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/erb.rb
224 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/rdoc/generator.rb
225 /Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json/version.rb
226 /usr/local/Cellar/ruby/2.2.2/lib/ruby/2.2.0/ostruct.rb
227 /Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json/generic_object.rb
228 /Users/shopetan/.rvm/gems/ruby-2.1.4/gems/json-1.8.3/lib/json/common.rb
[NOTE]
You may have encountered a bug in the Ruby interpreter or extension libraries.
Bug reports are welcome.
Don't forget to include the above Crash Report log file.
For details: http://www.ruby-lang.org/bugreport.html
https://github.com/scikit-learn/scikit-learn
作業ログは、参加者が、このイベントを通して得るものをより増やすために重要になります。なぜなら作業ログがメンターからのフィードバックをより充実させるからです。
作業ログを元にメンターと「ふりかえり」をするタイミングがあります。「ふりかえり」では次のことをします。
メンターは次のようなフィードバックをします。これは、参加者とは違う視点から参加者の行動を観察することおよびメンターの経験があるからできることです。(「ふりかえり」の前にこんなフィードバックをよろしくお願いします!とお願いすると効果が高まるので実践してみましょう。)
このように、参加者の作業をメンター視点で一緒に整理し、参加者の今後の行動に活かす活動がここでいう「ふりかえり」です。そのため、「参加者にとって」ログに残すべきかどうか、という視点ではなく、「とりあえずログに残す」という視点でログを残してください。これは、参加者が重要だと判断しなくてもメンターの視点から見たら大事なこともあるからです。
ログに残すときは次のようなときです。
ログに残すことは次のことです。「備考」以外は作業の邪魔にならないように一言でよいです。備考は作業に役立つので必要な分だけ書いてください。
ログはコメントとして追記していってください。テンプレートは次の通りです。
例1(備考なし):
例2:
必要なファイルが足りないのかなぁ。