ray-project / ray

Ray is a unified framework for scaling AI and Python applications. Ray consists of a core distributed runtime and a set of AI Libraries for accelerating ML workloads.
https://ray.io
Apache License 2.0
33.35k stars 5.65k forks source link

Error when doing pip install from source on Mac #1683

Closed gramster closed 6 years ago

gramster commented 6 years ago

System information

pip install -e . --verbose

Describe the problem

See below.

Source code / logs

Cleaning up...
Command "/Users/gwheeler/anaconda3/envs/notebooks/bin/python -c "import setuptools, tokenize;__file__='/Users/gwheeler/repos/ray/python/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" develop --no-deps" failed with error code 1 in /Users/gwheeler/repos/ray/python/
Exception information:
Traceback (most recent call last):
  File "/Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/pip/basecommand.py", line 215, in main
    status = self.run(options, args)
  File "/Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/pip/commands/install.py", line 342, in run
    prefix=options.prefix_path,
  File "/Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/pip/req/req_set.py", line 784, in install
    **kwargs
  File "/Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/pip/req/req_install.py", line 845, in install
    install_options, global_options, prefix=prefix)
  File "/Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/pip/req/req_install.py", line 1007, in install_editable
    show_stdout=False)
  File "/Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/pip/utils/__init__.py", line 707, in call_subprocess
    % (command_desc, proc.returncode, cwd))
pip.exceptions.InstallationError: Command "/Users/gwheeler/anaconda3/envs/notebooks/bin/python -c "import setuptools, tokenize;__file__='/Users/gwheeler/repos/ray/python/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" develop --no-deps" failed with error code 1 in /Users/gwheeler/repos/ray/python/
devin-petersohn commented 6 years ago

Do you have all the prerequisites from the readthedocs?

gramster commented 6 years ago

Yes I do.

devin-petersohn commented 6 years ago

Can you post the full log from the pip install -e . --verbose?

gramster commented 6 years ago

It looks like it might be failing at the last step of that quoted script. If I run it manually, then on the last line I get:

>>> exec(compile(code, __file__, 'exec'))
usage:  [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
   or:  --help [cmd1 cmd2 ...]
   or:  --help-commands
   or:  cmd --help

error: no commands supplied
devin-petersohn commented 6 years ago

I can't reproduce this locally, @robertnishihara do you know why it might be failing on the pip install -e .?

@gramster Does python setup.py install work from that directory?

pcmoritz commented 6 years ago

@gramster Do you have the full output from pip install -e . --verbose? Currently it is not clear to me which step of the installation is failing.

devin-petersohn commented 6 years ago

@gramster If that does not work, could you also try pip install git+https://github.com/ray-project/ray.git#subdirectory=python?

gramster commented 6 years ago

python setup.py install failed with:

[100%] Built target local_scheduler_tests
+ popd
~/repos/ray/python
+ cp /Users/gwheeler/repos/ray/thirdparty/pkg/arrow/cpp/build/cpp-install/bin/plasma_store /Users/gwheeler/repos/ray/python/ray/core/src/plasma/
error: [Errno 2] No such file or directory: './ray/pyarrow_files/pyarrow'
gramster commented 6 years ago

Here are the full logs from pip install:

Obtaining file:///Users/gwheeler/repos/ray/python
  Running setup.py (path:/Users/gwheeler/repos/ray/python/setup.py) egg_info for package from file:///Users/gwheeler/repos/ray/python
    Running command python setup.py egg_info
    running egg_info
    writing ray.egg-info/PKG-INFO
    writing dependency_links to ray.egg-info/dependency_links.txt
    writing entry points to ray.egg-info/entry_points.txt
    writing requirements to ray.egg-info/requires.txt
    writing top-level names to ray.egg-info/top_level.txt
    reading manifest file 'ray.egg-info/SOURCES.txt'
    writing manifest file 'ray.egg-info/SOURCES.txt'
  Source in /Users/gwheeler/repos/ray/python has version 0.3.1, which satisfies requirement ray==0.3.1 from file:///Users/gwheeler/repos/ray/python
Requirement already satisfied: numpy in /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages (from ray==0.3.1)
Requirement already satisfied: funcsigs in /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages (from ray==0.3.1)
Requirement already satisfied: click in /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages (from ray==0.3.1)
Requirement already satisfied: colorama in /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages (from ray==0.3.1)
Requirement already satisfied: psutil in /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages (from ray==0.3.1)
Requirement already satisfied: pytest in /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages (from ray==0.3.1)
Requirement already satisfied: pyyaml in /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages (from ray==0.3.1)
Requirement already satisfied: redis in /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages (from ray==0.3.1)
Requirement already satisfied: six>=1.0.0 in /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages (from ray==0.3.1)
Requirement already satisfied: flatbuffers in /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages (from ray==0.3.1)
Requirement already satisfied: setuptools in /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages (from pytest->ray==0.3.1)
Requirement already satisfied: pluggy<0.7,>=0.5 in /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages (from pytest->ray==0.3.1)
Requirement already satisfied: py>=1.5.0 in /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages (from pytest->ray==0.3.1)
Requirement already satisfied: attrs>=17.2.0 in /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages (from pytest->ray==0.3.1)
Installing collected packages: ray
  Found existing installation: ray 0.3.1
    Uninstalling ray-0.3.1:
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/bin/ray
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray-0.3.1.dist-info/DESCRIPTION.rst
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray-0.3.1.dist-info/INSTALLER
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray-0.3.1.dist-info/METADATA
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray-0.3.1.dist-info/RECORD
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray-0.3.1.dist-info/WHEEL
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray-0.3.1.dist-info/entry_points.txt
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray-0.3.1.dist-info/metadata.json
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray-0.3.1.dist-info/top_level.txt
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/WebUI.ipynb
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__pycache__/actor.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__pycache__/log_monitor.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__pycache__/monitor.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__pycache__/ray_constants.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__pycache__/serialization.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__pycache__/services.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__pycache__/signature.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__pycache__/utils.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__pycache__/worker.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/actor.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/__pycache__/autoscaler.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/__pycache__/commands.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/__pycache__/node_provider.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/__pycache__/tags.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/__pycache__/updater.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/autoscaler.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/aws/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/aws/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/aws/__pycache__/config.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/aws/__pycache__/node_provider.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/aws/config.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/aws/node_provider.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/commands.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/node_provider.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/tags.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/updater.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/cloudpickle/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/cloudpickle/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/cloudpickle/__pycache__/cloudpickle.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/cloudpickle/cloudpickle.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/common/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/common/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/Arg.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/DriverTableMessage.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/LocalSchedulerInfoMessage.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/ObjectInfo.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/ResourcePair.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/ResultTableReply.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/SubscribeToDBClientTableReply.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/SubscribeToNotificationsReply.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/TaskExecutionDependencies.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/TaskInfo.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/TaskReply.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/Arg.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/DriverTableMessage.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/LocalSchedulerInfoMessage.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/ObjectInfo.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/ResourcePair.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/ResultTableReply.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/SubscribeToDBClientTableReply.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/SubscribeToNotificationsReply.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/TaskExecutionDependencies.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/TaskInfo.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/TaskReply.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/catapult_files/index.html
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/catapult_files/trace_viewer_full.html
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/common/redis_module/libray_redis_module.so
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/common/thirdparty/redis/src/redis-server
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/global_scheduler/global_scheduler
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/local_scheduler/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/local_scheduler/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/local_scheduler/liblocal_scheduler_library.so
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/local_scheduler/local_scheduler
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/numbuf/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/numbuf/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/plasma/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/plasma/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/plasma/plasma_manager
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/plasma/plasma_store
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/dataframe/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/dataframe/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/dataframe/__pycache__/dataframe.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/dataframe/__pycache__/pandas_code_gen.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/dataframe/__pycache__/series.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/dataframe/dataframe.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/dataframe/pandas_code_gen.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/dataframe/series.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/__pycache__/state.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/__pycache__/tfutils.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/__pycache__/ui.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/distributed/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/distributed/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/distributed/__pycache__/core.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/distributed/__pycache__/linalg.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/distributed/__pycache__/random.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/distributed/core.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/distributed/linalg.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/distributed/random.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/remote/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/remote/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/remote/__pycache__/core.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/remote/__pycache__/linalg.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/remote/__pycache__/random.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/remote/core.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/remote/linalg.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/remote/random.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/state.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/tfutils.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/ui.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/global_scheduler/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/global_scheduler/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/global_scheduler/__pycache__/global_scheduler_services.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/global_scheduler/global_scheduler_services.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/local_scheduler/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/local_scheduler/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/local_scheduler/__pycache__/local_scheduler_services.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/local_scheduler/local_scheduler_services.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/log_monitor.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/monitor.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/plasma/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/plasma/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/plasma/__pycache__/plasma.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/plasma/__pycache__/utils.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/plasma/plasma.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/plasma/utils.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__init__.pxd
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/compat.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/feather.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/filesystem.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/formatting.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/hdfs.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/ipc.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/orc.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/pandas_compat.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/parquet.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/serialization.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/types.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/util.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/_config.pyx
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/_orc.pxd
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/_orc.pyx
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/_parquet.pxd
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/_parquet.pyx
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/array.pxi
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/compat.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/error.pxi
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/feather.pxi
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/feather.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/filesystem.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/formatting.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/hdfs.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/io-hdfs.pxi
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/io.pxi
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/ipc.pxi
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/ipc.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/lib.cpython-36m-darwin.so
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/lib.pxd
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/lib.pyx
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/lib_api.h
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/libarrow.0.0.0.dylib
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/libarrow.0.dylib
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/libarrow.dylib
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/libarrow_python.0.0.0.dylib
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/libarrow_python.0.dylib
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/libarrow_python.dylib
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/libplasma.0.0.0.dylib
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/libplasma.0.dylib
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/libplasma.dylib
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/memory.pxi
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/orc.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/pandas_compat.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/parquet.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/plasma.cpython-36m-darwin.so
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/plasma.pyx
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/plasma_store
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/public-api.pxi
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/scalar.pxi
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/serialization.pxi
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/serialization.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/table.pxi
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/types.pxi
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/types.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/util.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/ray_constants.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/__pycache__/agent.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/__pycache__/rollout.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/__pycache__/train.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__pycache__/a3c.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__pycache__/a3c_evaluator.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__pycache__/common.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__pycache__/policy.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__pycache__/shared_model.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__pycache__/shared_model_lstm.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__pycache__/shared_torch_policy.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__pycache__/tfpolicy.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__pycache__/torchpolicy.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/a3c.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/a3c_evaluator.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/common.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/policy.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/shared_model.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/shared_model_lstm.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/shared_torch_policy.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/tfpolicy.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/torchpolicy.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/agent.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/bc/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/bc/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/bc/__pycache__/bc.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/bc/__pycache__/bc_evaluator.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/bc/__pycache__/experience_dataset.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/bc/__pycache__/policy.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/bc/bc.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/bc/bc_evaluator.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/bc/experience_dataset.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/bc/policy.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/__pycache__/dqn.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/__pycache__/dqn_evaluator.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/__pycache__/dqn_replay_evaluator.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/__pycache__/models.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/__pycache__/replay_buffer.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/common/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/common/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/common/__pycache__/schedules.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/common/__pycache__/segment_tree.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/common/__pycache__/wrappers.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/common/schedules.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/common/segment_tree.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/common/wrappers.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/dqn.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/dqn_evaluator.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/dqn_replay_evaluator.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/models.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/replay_buffer.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/__pycache__/es.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/__pycache__/optimizers.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/__pycache__/policies.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/__pycache__/tabular_logger.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/__pycache__/utils.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/es.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/optimizers.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/policies.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/tabular_logger.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/utils.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/examples/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/examples/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/examples/__pycache__/multiagent_mountaincar.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/examples/__pycache__/multiagent_mountaincar_env.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/examples/__pycache__/multiagent_pendulum.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/examples/__pycache__/multiagent_pendulum_env.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/examples/multiagent_mountaincar.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/examples/multiagent_mountaincar_env.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/examples/multiagent_pendulum.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/examples/multiagent_pendulum_env.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/action_dist.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/catalog.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/convnet.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/fcnet.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/lstm.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/misc.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/model.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/multiagentfcnet.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/preprocessors.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/visionnet.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/action_dist.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/catalog.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/convnet.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/fcnet.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/lstm.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/misc.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/model.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/multiagentfcnet.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/preprocessors.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/pytorch/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/pytorch/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/pytorch/__pycache__/fcnet.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/pytorch/__pycache__/misc.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/pytorch/__pycache__/model.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/pytorch/__pycache__/visionnet.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/pytorch/fcnet.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/pytorch/misc.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/pytorch/model.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/pytorch/visionnet.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/visionnet.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/__pycache__/async.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/__pycache__/evaluator.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/__pycache__/local_sync.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/__pycache__/multi_gpu.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/__pycache__/multi_gpu_impl.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/__pycache__/optimizer.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/__pycache__/sample_batch.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/async.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/evaluator.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/local_sync.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/multi_gpu.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/multi_gpu_impl.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/optimizer.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/sample_batch.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/__pycache__/loss.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/__pycache__/ppo.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/__pycache__/ppo_evaluator.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/__pycache__/rollout.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/__pycache__/utils.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/loss.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/ppo.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/ppo_evaluator.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/rollout.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/utils.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/rollout.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/__pycache__/mock_evaluator.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/__pycache__/test_catalog.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/__pycache__/test_checkpoint_restore.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/__pycache__/test_evaluators.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/__pycache__/test_filters.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/__pycache__/test_optimizers.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/__pycache__/test_supported_spaces.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/mock_evaluator.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/test_catalog.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/test_checkpoint_restore.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/test_evaluators.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/test_filters.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/test_optimizers.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/test_supported_spaces.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/train.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/__pycache__/error.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/__pycache__/filter.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/__pycache__/filter_manager.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/__pycache__/process_rollout.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/__pycache__/reshaper.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/__pycache__/sampler.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/__pycache__/timer.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/error.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/filter.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/filter_manager.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/process_rollout.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/reshaper.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/sampler.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/timer.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/scripts/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/scripts/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/scripts/__pycache__/scripts.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/scripts/scripts.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/serialization.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/services.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/signature.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/test/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/test/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/test/__pycache__/test_functions.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/test/__pycache__/test_utils.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/test/test_functions.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/test/test_utils.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/config_parser.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/error.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/function_runner.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/hyperband.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/logger.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/median_stopping_rule.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/pbt.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/registry.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/result.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/trainable.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/trial.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/trial_runner.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/trial_scheduler.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/tune.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/variant_generator.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/visual_utils.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/web_server.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/config_parser.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/error.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/function_runner.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/hyperband.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/logger.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/median_stopping_rule.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/pbt.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/registry.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/result.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/trainable.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/trial.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/trial_runner.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/trial_scheduler.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/tune.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/variant_generator.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/visual_utils.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/web_server.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/utils.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/worker.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/workers/__init__.py
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/workers/__pycache__/__init__.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/workers/__pycache__/default_worker.cpython-36.pyc
      Removing file or directory /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/workers/default_worker.py
      Successfully uninstalled ray-0.3.1
  Running setup.py develop for ray
    Running command /Users/gwheeler/anaconda3/envs/notebooks/bin/python -c "import setuptools, tokenize;__file__='/Users/gwheeler/repos/ray/python/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" develop --no-deps
    running develop
    running egg_info
    writing ray.egg-info/PKG-INFO
    writing dependency_links to ray.egg-info/dependency_links.txt
    writing entry points to ray.egg-info/entry_points.txt
    writing requirements to ray.egg-info/requires.txt
    writing top-level names to ray.egg-info/top_level.txt
    reading manifest file 'ray.egg-info/SOURCES.txt'
    writing manifest file 'ray.egg-info/SOURCES.txt'
    running build_ext
    + set -e
    +++ dirname ../build.sh
    ++ cd ..
    ++ pwd
    + ROOT_DIR=/Users/gwheeler/repos/ray
    + [[ -z /Users/gwheeler/anaconda3/envs/notebooks/bin/python ]]
    + PYTHON_EXECUTABLE=/Users/gwheeler/anaconda3/envs/notebooks/bin/python
    + echo 'Using Python executable /Users/gwheeler/anaconda3/envs/notebooks/bin/python.'
    Using Python executable /Users/gwheeler/anaconda3/envs/notebooks/bin/python.
    + bash /Users/gwheeler/repos/ray/setup_thirdparty.sh /Users/gwheeler/anaconda3/envs/notebooks/bin/python
    + set -e
    +++ dirname /Users/gwheeler/repos/ray/setup_thirdparty.sh
    ++ cd /Users/gwheeler/repos/ray
    ++ pwd
    + TP_DIR=/Users/gwheeler/repos/ray
    + [[ -z /Users/gwheeler/anaconda3/envs/notebooks/bin/python ]]
    + PYTHON_EXECUTABLE=/Users/gwheeler/anaconda3/envs/notebooks/bin/python
    + echo 'Using Python executable /Users/gwheeler/anaconda3/envs/notebooks/bin/python.'
    Using Python executable /Users/gwheeler/anaconda3/envs/notebooks/bin/python.
    + /Users/gwheeler/repos/ray/thirdparty/scripts/setup.sh /Users/gwheeler/anaconda3/envs/notebooks/bin/python
    + set -e
    +++ dirname /Users/gwheeler/repos/ray/thirdparty/scripts/setup.sh
    ++ cd /Users/gwheeler/repos/ray/thirdparty/scripts
    ++ pwd
    + TP_SCRIPT_DIR=/Users/gwheeler/repos/ray/thirdparty/scripts
    + TP_DIR=/Users/gwheeler/repos/ray/thirdparty/scripts/..
    + mkdir -p /Users/gwheeler/repos/ray/thirdparty/scripts/../build
    + mkdir -p /Users/gwheeler/repos/ray/thirdparty/scripts/../pkg
    + [[ -z /Users/gwheeler/anaconda3/envs/notebooks/bin/python ]]
    + PYTHON_EXECUTABLE=/Users/gwheeler/anaconda3/envs/notebooks/bin/python
    + echo 'Using Python executable /Users/gwheeler/anaconda3/envs/notebooks/bin/python.'
    Using Python executable /Users/gwheeler/anaconda3/envs/notebooks/bin/python.
    ++ uname
    + unamestr=Darwin
    + bash /Users/gwheeler/repos/ray/thirdparty/scripts/build_redis.sh
    + set -e
    +++ dirname /Users/gwheeler/repos/ray/thirdparty/scripts/build_redis.sh
    ++ cd /Users/gwheeler/repos/ray/thirdparty/scripts
    ++ pwd
    + TP_DIR=/Users/gwheeler/repos/ray/thirdparty/scripts/../
    + '[' '!' -f /Users/gwheeler/repos/ray/thirdparty/scripts/..//pkg/redis/src/redis-server ']'
    + bash /Users/gwheeler/repos/ray/thirdparty/scripts/build_credis.sh
    + set -e
    +++ dirname /Users/gwheeler/repos/ray/thirdparty/scripts/build_credis.sh
    ++ cd /Users/gwheeler/repos/ray/thirdparty/scripts
    ++ pwd
    + TP_DIR=/Users/gwheeler/repos/ray/thirdparty/scripts/../
    + ROOT_DIR=/Users/gwheeler/repos/ray/thirdparty/scripts/..//..
    + [[ '' = \o\n ]]
    + [[ Darwin == \L\i\n\u\x ]]
    + [[ Darwin == \L\i\n\u\x ]]
    + bash /Users/gwheeler/repos/ray/thirdparty/scripts/build_arrow.sh /Users/gwheeler/anaconda3/envs/notebooks/bin/python
    + set -e
    +++ dirname /Users/gwheeler/repos/ray/thirdparty/scripts/build_arrow.sh
    ++ cd /Users/gwheeler/repos/ray/thirdparty/scripts
    ++ pwd
    + TP_DIR=/Users/gwheeler/repos/ray/thirdparty/scripts/../
    + [[ -z /Users/gwheeler/anaconda3/envs/notebooks/bin/python ]]
    + PYTHON_EXECUTABLE=/Users/gwheeler/anaconda3/envs/notebooks/bin/python
    + echo 'Using Python executable /Users/gwheeler/anaconda3/envs/notebooks/bin/python.'
    Using Python executable /Users/gwheeler/anaconda3/envs/notebooks/bin/python.
    ++ uname
    + unamestr=Darwin
    + [[ Darwin == \L\i\n\u\x ]]
    + FLATBUFFERS_HOME=
    + [[ Darwin == \L\i\n\u\x ]]
    + [[ Darwin == \D\a\r\w\i\n ]]
    ++ sysctl -n hw.ncpu
    + PARALLEL=8
    + echo 'Platform is macosx.'
    Platform is macosx.
    + [[ ! -d /Users/gwheeler/repos/ray/thirdparty/scripts/..//pkg/arrow ]]
    + bash /Users/gwheeler/repos/ray/thirdparty/scripts/build_ui.sh
    + set -e
    +++ dirname /Users/gwheeler/repos/ray/thirdparty/scripts/build_ui.sh
    ++ cd /Users/gwheeler/repos/ray/thirdparty/scripts
    ++ pwd
    + TP_DIR=/Users/gwheeler/repos/ray/thirdparty/scripts/../
    + CATAPULT_COMMIT=18cd334755701cf0c3b90b7172126c686d2eb787
    + CATAPULT_HOME=/Users/gwheeler/repos/ray/thirdparty/scripts/..//pkg/catapult
    + VULCANIZE_BIN=/Users/gwheeler/repos/ray/thirdparty/scripts/..//pkg/catapult/tracing/bin/vulcanize_trace_viewer
    + CATAPULT_FILES=/Users/gwheeler/repos/ray/thirdparty/scripts/..//../python/ray/core/src/catapult_files
    + mkdir -p /Users/gwheeler/repos/ray/thirdparty/scripts/..//../python/ray/core/src/catapult_files
    + [[ '' == \0 ]]
    + type python2
    /Users/gwheeler/repos/ray/thirdparty/scripts/build_ui.sh: line 24: type: python2: not found
    + echo 'cannot properly set up UI without a python2 executable'
    cannot properly set up UI without a python2 executable
    + [[ '' == \1 ]]
    + exit 0
    ++ uname
    + unamestr=Darwin
    + [[ Darwin == \L\i\n\u\x ]]
    + [[ Darwin == \D\a\r\w\i\n ]]
    ++ sysctl -n hw.ncpu
    + PARALLEL=8
    + pushd /Users/gwheeler/repos/ray/python/ray/core
    ~/repos/ray/python/ray/core ~/repos/ray/python
    + TP_PKG_DIR=/Users/gwheeler/repos/ray/thirdparty/pkg
    + ARROW_HOME=/Users/gwheeler/repos/ray/thirdparty/pkg/arrow/cpp/build/cpp-install
    + [[ '' = \1 ]]
    + BOOST_ROOT=/Users/gwheeler/repos/ray/thirdparty/pkg/boost
    + PKG_CONFIG_PATH=/Users/gwheeler/repos/ray/thirdparty/pkg/arrow/cpp/build/cpp-install/lib/pkgconfig
    + cmake -DCMAKE_BUILD_TYPE=Release -DRAY_USE_NEW_GCS= -DPYTHON_EXECUTABLE:FILEPATH=/Users/gwheeler/anaconda3/envs/notebooks/bin/python ../../..
    CMake Warning at thirdparty/scripts/thirdparty.cmake:6 (message):

      /Users/gwheeler/repos/ray/cmake/Modules/Users/gwheeler/repos/ray/thirdparty/scripts/../build/arrow/python/cmake_modules
    Call Stack (most recent call first):
      CMakeLists.txt:7 (include)

    -- Arrow ABI version: 0.0.0
    -- Arrow SO version: 0
    -- Found the Arrow core library: /Users/gwheeler/repos/ray/thirdparty/pkg/arrow/cpp/build/cpp-install/lib/libarrow.dylib
    -- Found the Arrow Python library: /Users/gwheeler/repos/ray/thirdparty/pkg/arrow/cpp/build/cpp-install/lib/libarrow_python.dylib
    -- Plasma ABI version: 0.0.0
    -- Plasma SO version: 0
    -- Found the Plasma core library: /Users/gwheeler/repos/ray/thirdparty/pkg/arrow/cpp/build/cpp-install/lib/libplasma.dylib
    -- Found Plasma executable: /Users/gwheeler/repos/ray/thirdparty/pkg/arrow/cpp/build/cpp-install/bin/plasma_store
    -- GTest include dir: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include
    -- GTest static library: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/lib/libgtest.a
    Added static library dependency gtest: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/lib/libgtest.a
    Added static library dependency gtest_main: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/lib/libgtest_main.a
    -- GFlags include dir: /Users/gwheeler/repos/ray/python/ray/core/gflags_ep-prefix/src/gflags_ep/include
    -- GFlags static library: /Users/gwheeler/repos/ray/python/ray/core/gflags_ep-prefix/src/gflags_ep/lib/libgflags.a
    Added static library dependency gflags: /Users/gwheeler/repos/ray/python/ray/core/gflags_ep-prefix/src/gflags_ep/lib/libgflags.a
    CMake Warning at /usr/local/Cellar/cmake/3.10.2/share/cmake/Modules/FindBoost.cmake:801 (message):
      New Boost version may have incorrect or missing dependencies and imported
      targets
    Call Stack (most recent call first):
      /usr/local/Cellar/cmake/3.10.2/share/cmake/Modules/FindBoost.cmake:907 (_Boost_COMPONENT_DEPENDENCIES)
      /usr/local/Cellar/cmake/3.10.2/share/cmake/Modules/FindBoost.cmake:1542 (_Boost_MISSING_DEPENDENCIES)
      cmake/Modules/ThirdpartyToolchain.cmake:86 (find_package)
      CMakeLists.txt:43 (include)

    CMake Warning at /usr/local/Cellar/cmake/3.10.2/share/cmake/Modules/FindBoost.cmake:801 (message):
      New Boost version may have incorrect or missing dependencies and imported
      targets
    Call Stack (most recent call first):
      /usr/local/Cellar/cmake/3.10.2/share/cmake/Modules/FindBoost.cmake:907 (_Boost_COMPONENT_DEPENDENCIES)
      /usr/local/Cellar/cmake/3.10.2/share/cmake/Modules/FindBoost.cmake:1542 (_Boost_MISSING_DEPENDENCIES)
      cmake/Modules/ThirdpartyToolchain.cmake:86 (find_package)
      CMakeLists.txt:43 (include)

    -- Boost version: 1.66.0
    -- Found the following Boost libraries:
    --   system
    --   filesystem
    -- Flatbuffers include dir: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/include
    -- Flatbuffers static library: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/lib/libflatbuffers.a
    -- Flatbuffers compiler: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/bin/flatc
    -- PYTHON_INCLUDE_DIRS: /Users/gwheeler/anaconda3/envs/notebooks/include/python3.6m
    -- Using PYTHON_EXECUTABLE: /Users/gwheeler/anaconda3/envs/notebooks/bin/python
    -- Using PYTHON_INCLUDE_DIRS: /Users/gwheeler/anaconda3/envs/notebooks/include/python3.6m
    -- Flatbuffers include dir: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/include
    -- Flatbuffers static library: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/lib/libflatbuffers.a
    -- Flatbuffers compiler: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/bin/flatc
    -- PYTHON_INCLUDE_DIRS: /Users/gwheeler/anaconda3/envs/notebooks/include/python3.6m
    -- Using PYTHON_EXECUTABLE: /Users/gwheeler/anaconda3/envs/notebooks/bin/python
    -- Using PYTHON_INCLUDE_DIRS: /Users/gwheeler/anaconda3/envs/notebooks/include/python3.6m
    -- Flatbuffers include dir: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/include
    -- Flatbuffers static library: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/lib/libflatbuffers.a
    -- Flatbuffers compiler: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/bin/flatc
    -- PYTHON_INCLUDE_DIRS: /Users/gwheeler/anaconda3/envs/notebooks/include/python3.6m
    -- Using PYTHON_EXECUTABLE: /Users/gwheeler/anaconda3/envs/notebooks/bin/python
    -- Using PYTHON_INCLUDE_DIRS: /Users/gwheeler/anaconda3/envs/notebooks/include/python3.6m
    -- Flatbuffers include dir: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/include
    -- Flatbuffers static library: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/lib/libflatbuffers.a
    -- Flatbuffers compiler: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/bin/flatc
    -- PYTHON_INCLUDE_DIRS: /Users/gwheeler/anaconda3/envs/notebooks/include/python3.6m
    -- Using PYTHON_EXECUTABLE: /Users/gwheeler/anaconda3/envs/notebooks/bin/python
    -- Using PYTHON_INCLUDE_DIRS: /Users/gwheeler/anaconda3/envs/notebooks/include/python3.6m
    -- Flatbuffers include dir: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/include
    -- Flatbuffers static library: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/lib/libflatbuffers.a
    -- Flatbuffers compiler: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/bin/flatc
    -- PYTHON_INCLUDE_DIRS: /Users/gwheeler/anaconda3/envs/notebooks/include/python3.6m
    -- Using PYTHON_EXECUTABLE: /Users/gwheeler/anaconda3/envs/notebooks/bin/python
    -- Using PYTHON_INCLUDE_DIRS: /Users/gwheeler/anaconda3/envs/notebooks/include/python3.6m
    -- Arrow ABI version: 0.0.0
    -- Arrow SO version: 0
    -- Found the Arrow core library: /Users/gwheeler/repos/ray/thirdparty/pkg/arrow/cpp/build/cpp-install/lib/libarrow.dylib
    -- Found the Arrow Python library: /Users/gwheeler/repos/ray/thirdparty/pkg/arrow/cpp/build/cpp-install/lib/libarrow_python.dylib
    -- Plasma ABI version: 0.0.0
    -- Plasma SO version: 0
    -- Found the Plasma core library: /Users/gwheeler/repos/ray/thirdparty/pkg/arrow/cpp/build/cpp-install/lib/libplasma.dylib
    -- Found Plasma executable: /Users/gwheeler/repos/ray/thirdparty/pkg/arrow/cpp/build/cpp-install/bin/plasma_store
    -- Flatbuffers include dir: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/include
    -- Flatbuffers static library: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/lib/libflatbuffers.a
    -- Flatbuffers compiler: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/bin/flatc
    -- PYTHON_INCLUDE_DIRS: /Users/gwheeler/anaconda3/envs/notebooks/include/python3.6m
    -- Using PYTHON_EXECUTABLE: /Users/gwheeler/anaconda3/envs/notebooks/bin/python
    -- Using PYTHON_INCLUDE_DIRS: /Users/gwheeler/anaconda3/envs/notebooks/include/python3.6m
    -- Configuring done
    CMake Warning (dev):
      Policy CMP0068 is not set: RPATH settings on macOS do not affect
      install_name.  Run "cmake --help-policy CMP0068" for policy details.  Use
      the cmake_policy command to set the policy and suppress this warning.

      For compatibility with older versions of CMake, the install_name fields for
      the following targets are still affected by RPATH settings:

       ray_shared

    This warning is for project developers.  Use -Wno-dev to suppress it.

    -- Generating done
    -- Build files have been written to: /Users/gwheeler/repos/ray/python/ray/core
    + make clean
    + make -j8
    [  2%] Creating directories for 'gflags_ep'
    [  2%] Creating directories for 'flatbuffers_ep'
    [  2%] Creating directories for 'googletest_ep'
    [  2%] Built target hiredis
    [  2%] Built target copy_redis
    [  4%] Performing download step (download, verify and extract) for 'gflags_ep'
    [  4%] Performing download step (download, verify and extract) for 'googletest_ep'
    -- File already exists but no hash specified (use URL_HASH):
      file='/Users/gwheeler/repos/ray/python/ray/core/gflags_ep-prefix/src/v2.2.0.tar.gz'
    Old file will be removed and new file downloaded from URL.
    -- Downloading...
       dst='/Users/gwheeler/repos/ray/python/ray/core/gflags_ep-prefix/src/v2.2.0.tar.gz'
       timeout='none'
    -- Using src='https://github.com/gflags/gflags/archive/v2.2.0.tar.gz'
    -- File already exists but no hash specified (use URL_HASH):
      file='/Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/release-1.8.0.tar.gz'
    Old file will be removed and new file downloaded from URL.
    -- Downloading...
       dst='/Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/release-1.8.0.tar.gz'
       timeout='none'
    -- Using src='https://github.com/google/googletest/archive/release-1.8.0.tar.gz'
    [  5%] Performing download step (download, verify and extract) for 'flatbuffers_ep'
    -- File already exists but no hash specified (use URL_HASH):
      file='/Users/gwheeler/repos/ray/python/ray/core/src/ray/gcs/flatbuffers_ep-prefix/src/v1.7.1.tar.gz'
    Old file will be removed and new file downloaded from URL.
    -- Downloading...
       dst='/Users/gwheeler/repos/ray/python/ray/core/src/ray/gcs/flatbuffers_ep-prefix/src/v1.7.1.tar.gz'
       timeout='none'
    -- Using src='https://github.com/google/flatbuffers/archive/v1.7.1.tar.gz'
    -- [download 0% complete]
    -- [download 1% complete]
    -- [download 3% complete]
    -- [download 4% complete]
    -- [download 6% complete]
    -- [download 7% complete]
    -- [download 9% complete]
    -- [download 10% complete]
    -- [download 11% complete]
    -- [download 13% complete]
    -- [download 14% complete]
    -- [download 16% complete]
    -- [download 17% complete]
    -- [download 18% complete]
    -- [download 20% complete]
    -- [download 21% complete]
    -- [download 23% complete]
    -- [download 24% complete]
    -- [download 26% complete]
    -- [download 27% complete]
    -- [download 28% complete]
    -- [download 29% complete]
    -- [download 31% complete]
    -- [download 32% complete]
    -- [download 34% complete]
    -- [download 35% complete]
    -- [download 36% complete]
    -- [download 38% complete]
    -- [download 39% complete]
    -- [download 41% complete]
    -- [download 42% complete]
    -- [download 43% complete]
    -- [download 45% complete]
    -- [download 46% complete]
    -- [download 48% complete]
    -- [download 49% complete]
    -- [download 51% complete]
    -- [download 52% complete]
    -- [download 53% complete]
    -- [download 55% complete]
    -- [download 56% complete]
    -- [download 58% complete]
    -- [download 59% complete]
    -- [download 61% complete]
    -- [download 62% complete]
    -- [download 63% complete]
    -- [download 0% complete]
    -- [download 1% complete]
    -- [download 2% complete]
    -- [download 65% complete]
    -- [download 66% complete]
    -- [download 68% complete]
    -- [download 69% complete]
    -- [download 70% complete]
    -- [download 72% complete]
    -- [download 73% complete]
    -- [download 75% complete]
    -- [download 76% complete]
    -- [download 78% complete]
    -- [download 79% complete]
    -- [download 80% complete]
    -- [download 82% complete]
    -- [download 83% complete]
    -- [download 85% complete]
    -- [download 86% complete]
    -- [download 88% complete]
    -- [download 89% complete]
    -- [download 90% complete]
    -- [download 92% complete]
    -- [download 93% complete]
    -- [download 94% complete]
    -- [download 96% complete]
    -- [download 97% complete]
    -- [download 98% complete]
    -- [download 100% complete]
    -- Downloading... done
    -- [download 3% complete]
    -- [download 4% complete]
    -- [download 5% complete]
    -- [download 6% complete]
    -- [download 7% complete]
    -- [download 8% complete]
    -- extracting...
         src='/Users/gwheeler/repos/ray/python/ray/core/gflags_ep-prefix/src/v2.2.0.tar.gz'
         dst='/Users/gwheeler/repos/ray/python/ray/core/gflags_ep-prefix/src/gflags_ep'
    -- extracting... [tar xfz]
    -- [download 9% complete]
    -- [download 10% complete]
    -- [download 11% complete]
    -- [download 12% complete]
    -- [download 13% complete]
    -- [download 14% complete]
    -- extracting... [analysis]
    -- extracting... [rename]
    -- [download 15% complete]
    -- [download 16% complete]
    -- [download 17% complete]
    -- [download 18% complete]
    -- [download 19% complete]
    -- [download 20% complete]
    -- [download 21% complete]
    -- [download 22% complete]
    -- [download 23% complete]
    -- [download 24% complete]
    -- [download 25% complete]
    -- [download 26% complete]
    -- [download 27% complete]
    -- [download 28% complete]
    -- [download 29% complete]
    -- [download 30% complete]
    -- [download 31% complete]
    -- extracting... [clean up]
    -- extracting... done
    -- [download 32% complete]
    -- [download 33% complete]
    -- [download 34% complete]
    -- [download 35% complete]
    -- [download 36% complete]
    -- [download 37% complete]
    -- [download 38% complete]
    -- [download 39% complete]
    -- [download 40% complete]
    -- [download 41% complete]
    -- [download 42% complete]
    -- [download 43% complete]
    -- [download 44% complete]
    -- [download 45% complete]
    -- [download 46% complete]
    -- [download 47% complete]
    -- [download 48% complete]
    -- [download 49% complete]
    -- [download 50% complete]
    -- [download 51% complete]
    -- [download 52% complete]
    -- [download 53% complete]
    -- [download 54% complete]
    -- [download 55% complete]
    -- [download 56% complete]
    -- [download 57% complete]
    -- [download 58% complete]
    [  7%] No update step for 'gflags_ep'
    [  7%] No patch step for 'gflags_ep'
    -- [download 59% complete]
    -- [download 60% complete]
    -- [download 61% complete]
    -- [download 62% complete]
    -- [download 63% complete]
    -- [download 64% complete]
    -- [download 65% complete]
    -- [download 66% complete]
    -- [download 67% complete]
    -- [download 68% complete]
    -- [download 69% complete]
    -- [download 70% complete]
    -- [download 71% complete]
    -- [download 72% complete]
    -- [download 73% complete]
    -- [download 74% complete]
    -- [download 75% complete]
    -- [download 76% complete]
    -- [download 77% complete]
    -- [download 78% complete]
    -- [download 79% complete]
    -- [download 80% complete]
    -- [download 81% complete]
    -- [download 82% complete]
    -- [download 83% complete]
    -- [download 84% complete]
    -- [download 85% complete]
    -- [download 86% complete]
    -- [download 87% complete]
    -- [download 88% complete]
    -- [download 89% complete]
    -- [download 90% complete]
    -- [download 91% complete]
    [  8%] Performing configure step for 'gflags_ep'
    -- [download 92% complete]
    -- [download 93% complete]
    -- [download 94% complete]
    -- [download 95% complete]
    -- [download 96% complete]
    -- [download 97% complete]
    -- [download 98% complete]
    -- [download 99% complete]
    -- [download 100% complete]
    -- Downloading... done
    -- extracting...
         src='/Users/gwheeler/repos/ray/python/ray/core/src/ray/gcs/flatbuffers_ep-prefix/src/v1.7.1.tar.gz'
         dst='/Users/gwheeler/repos/ray/python/ray/core/src/ray/gcs/flatbuffers_ep-prefix/src/flatbuffers_ep'
    -- extracting... [tar xfz]
    -- extracting... [analysis]
    -- extracting... [rename]
    -- The CXX compiler identification is AppleClang 9.0.0.9000039
    -- extracting... [clean up]
    -- extracting... done
    -- Check for working CXX compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
    [ 10%] No update step for 'flatbuffers_ep'
    [ 10%] No patch step for 'flatbuffers_ep'
    [ 11%] Performing configure step for 'flatbuffers_ep'
    -- Configuring done
    -- Generating done
    -- Build files have been written to: /Users/gwheeler/repos/ray/python/ray/core/src/ray/gcs/flatbuffers_ep-prefix/src/flatbuffers_ep-build
    -- Check for working CXX compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -- works
    -- Detecting CXX compiler ABI info
    [ 12%] Performing build step for 'flatbuffers_ep'
    [ 15%] Built target flathash
    [ 30%] Built target flatbuffers
    [100%] Built target flatc
    [ 13%] Performing install step for 'flatbuffers_ep'
    -- Detecting CXX compiler ABI info - done
    -- Detecting CXX compile features
    [ 15%] Built target flathash
    [ 30%] Built target flatbuffers
    [100%] Built target flatc
    Install the project...
    -- Install configuration: ""
    -- Up-to-date: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/include/flatbuffers
    -- Up-to-date: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/include/flatbuffers/grpc.h
    -- Up-to-date: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/include/flatbuffers/idl.h
    -- Up-to-date: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/include/flatbuffers/reflection_generated.h
    -- Up-to-date: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/include/flatbuffers/registry.h
    -- Up-to-date: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/include/flatbuffers/flatbuffers.h
    -- Up-to-date: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/include/flatbuffers/flatc.h
    -- Up-to-date: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/include/flatbuffers/flexbuffers.h
    -- Up-to-date: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/include/flatbuffers/util.h
    -- Up-to-date: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/include/flatbuffers/code_generators.h
    -- Up-to-date: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/include/flatbuffers/hash.h
    -- Up-to-date: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/include/flatbuffers/reflection.h
    -- Up-to-date: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/include/flatbuffers/base.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/lib/libflatbuffers.a
    -- Up-to-date: /Users/gwheeler/repos/ray/python/ray/core/flatbuffers_ep-prefix/src/flatbuffers_ep-install/bin/flatc
    [ 14%] Completed 'flatbuffers_ep'
    -- [download 0% complete]
    -- [download 1% complete]
    -- [download 2% complete]
    [ 14%] Built target flatbuffers_ep
    -- [download 3% complete]
    -- [download 4% complete]
    -- [download 5% complete]
    [ 17%] Running flatc compiler on /Users/gwheeler/repos/ray/src/local_scheduler/format/local_scheduler.fbs
    [ 17%] Running flatc compiler on /Users/gwheeler/repos/ray/src/ray/gcs/format/gcs.fbs
    [ 17%] Running flatc compiler on /Users/gwheeler/repos/ray/src/common/format/common.fbs
    -- [download 6% complete]
    -- [download 7% complete]
    -- [download 8% complete]
    -- [download 9% complete]
    -- [download 10% complete]
    -- [download 11% complete]
    [ 17%] Built target gen_gcs_fbs
    [ 17%] Built target gen_local_scheduler_fbs
    Running flatc compiler on /Users/gwheeler/repos/ray/src/common/format/common.fbs
    -- [download 12% complete]
    -- [download 13% complete]
    -- [download 14% complete]
    -- [download 15% complete]
    -- [download 16% complete]
    -- [download 17% complete]
    -- [download 18% complete]
    -- [download 19% complete]
    -- [download 20% complete]
    -- [download 21% complete]
    [ 17%] Built target gen_common_fbs
    -- [download 22% complete]
    -- [download 23% complete]
    -- [download 24% complete]
    -- [download 25% complete]
    -- [download 26% complete]
    -- [download 27% complete]
    -- [download 28% complete]
    -- [download 29% complete]
    -- [download 30% complete]
    -- [download 31% complete]
    Scanning dependencies of target ray_redis_module
    -- [download 32% complete]
    -- [download 33% complete]
    -- [download 34% complete]
    -- [download 35% complete]
    -- [download 36% complete]
    -- [download 37% complete]
    -- [download 38% complete]
    -- [download 39% complete]
    -- [download 40% complete]
    [ 18%] Building CXX object src/common/redis_module/CMakeFiles/ray_redis_module.dir/ray_redis_module.cc.o
    -- [download 41% complete]
    -- [download 42% complete]
    Scanning dependencies of target common
    -- [download 43% complete]
    -- [download 44% complete]
    -- [download 45% complete]
    -- [download 46% complete]
    -- [download 47% complete]
    -- [download 48% complete]
    -- [download 49% complete]
    -- [download 50% complete]
    -- [download 51% complete]
    [ 21%] Building CXX object src/common/CMakeFiles/common.dir/common_protocol.cc.o
    [ 21%] Building CXX object src/common/CMakeFiles/common.dir/event_loop.cc.o
    [ 21%] Building CXX object src/common/CMakeFiles/common.dir/common.cc.o
    -- [download 52% complete]
    -- [download 53% complete]
    -- [download 54% complete]
    -- [download 55% complete]
    -- [download 56% complete]
    -- [download 57% complete]
    -- [download 59% complete]
    -- [download 60% complete]
    -- [download 61% complete]
    -- [download 62% complete]
    -- [download 63% complete]
    -- [download 64% complete]
    -- [download 65% complete]
    -- [download 66% complete]
    -- [download 67% complete]
    -- [download 68% complete]
    -- [download 69% complete]
    -- [download 70% complete]
    -- [download 71% complete]
    -- [download 72% complete]
    -- [download 73% complete]
    -- [download 74% complete]
    -- [download 75% complete]
    -- [download 76% complete]
    -- [download 77% complete]
    -- [download 78% complete]
    -- [download 79% complete]
    -- [download 80% complete]
    -- [download 82% complete]
    -- [download 83% complete]
    -- [download 84% complete]
    -- [download 85% complete]
    -- [download 86% complete]
    -- [download 87% complete]
    -- [download 88% complete]
    -- [download 89% complete]
    -- [download 90% complete]
    -- [download 91% complete]
    -- [download 92% complete]
    -- [download 93% complete]
    -- [download 94% complete]
    -- [download 95% complete]
    -- [download 96% complete]
    -- [download 97% complete]
    -- [download 98% complete]
    -- [download 99% complete]
    -- [download 100% complete]
    Scanning dependencies of target local_scheduler_client
    -- Downloading... done
    -- extracting...
         src='/Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/release-1.8.0.tar.gz'
         dst='/Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep'
    -- extracting... [tar xfz]
    [ 22%] Building CXX object src/local_scheduler/CMakeFiles/local_scheduler_client.dir/local_scheduler_client.cc.o
    -- extracting... [analysis]
    -- extracting... [rename]
    -- extracting... [clean up]
    -- extracting... done
    [ 23%] No patch step for 'googletest_ep'
    Scanning dependencies of target ray_objlib
    [ 24%] No update step for 'googletest_ep'
    [ 25%] Building CXX object src/ray/CMakeFiles/ray_objlib.dir/id.cc.o
    [ 26%] Performing configure step for 'googletest_ep'
    -- Detecting CXX compile features - done
    -- Configuring done
    [ 27%] Building CXX object src/common/CMakeFiles/common.dir/task.cc.o
    -- The C compiler identification is AppleClang 9.0.0.9000039
    [ 28%] Building CXX object src/ray/CMakeFiles/ray_objlib.dir/status.cc.o
    -- Generating done
    -- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
    -- Build files have been written to: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep-build
    [ 29%] Performing build step for 'googletest_ep'
    [ 27%] Built target gmock
    [ 63%] Built target gmock_main
    -- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -- works
    -- Detecting C compiler ABI info
    [ 81%] Built target gtest
    [100%] Built target gtest_main
    [ 30%] Performing install step for 'googletest_ep'
    [ 31%] Building CXX object src/common/CMakeFiles/common.dir/io.cc.o
    -- Detecting C compiler ABI info - done
    -- Detecting C compile features
    [ 27%] Built target gmock
    [ 63%] Built target gmock_main
    [ 81%] Built target gtest
    [100%] Built target gtest_main
    Install the project...
    -- Install configuration: "Release"
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/lib/libgmock.a
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/lib/libgmock_main.a
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/gmock-generated-actions.h.pump
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/gmock-generated-function-mockers.h.pump
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/gmock-matchers.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/gmock-more-actions.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/gmock-generated-matchers.h.pump
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/gmock-generated-nice-strict.h.pump
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/gmock-generated-actions.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/gmock-generated-matchers.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/gmock-generated-nice-strict.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/internal
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/internal/gmock-port.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/internal/gmock-internal-utils.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/internal/gmock-generated-internal-utils.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/internal/gmock-generated-internal-utils.h.pump
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/internal/custom
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/internal/custom/gmock-generated-actions.h.pump
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/internal/custom/gmock-port.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/internal/custom/gmock-matchers.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/internal/custom/gmock-generated-actions.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/gmock-more-matchers.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/gmock-generated-function-mockers.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/gmock-cardinalities.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/gmock-spec-builders.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/gmock.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gmock/gmock-actions.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/lib/libgtest.a
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/lib/libgtest_main.a
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/gtest-death-test.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/gtest-spi.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/internal
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/internal/gtest-linked_ptr.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/internal/gtest-string.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/internal/gtest-tuple.h.pump
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/internal/gtest-death-test-internal.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/internal/gtest-type-util.h.pump
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/internal/gtest-port.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/internal/gtest-port-arch.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/internal/gtest-internal.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/internal/gtest-param-util-generated.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/internal/gtest-param-util.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/internal/gtest-type-util.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/internal/gtest-filepath.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/internal/custom
    [ 32%] Building CXX object src/ray/CMakeFiles/ray_objlib.dir/gcs/client.cc.o
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/internal/custom/gtest-port.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/internal/custom/gtest.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/internal/custom/gtest-printers.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/internal/gtest-tuple.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/internal/gtest-param-util-generated.h.pump
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/gtest-message.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/gtest-param-test.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/gtest-typed-test.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/gtest_pred_impl.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/gtest_prod.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/gtest-param-test.h.pump
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/gtest-test-part.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/gtest.h
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/googletest_ep-prefix/src/googletest_ep/include/gtest/gtest-printers.h
    [ 33%] Completed 'googletest_ep'
    [ 33%] Built target googletest_ep
    [ 34%] Building CXX object src/common/CMakeFiles/common.dir/net.cc.o
    -- Detecting C compile features - done
    -- Looking for C++ include unistd.h
    -- Looking for C++ include unistd.h - found
    -- Looking for C++ include stdint.h
    [ 35%] Building CXX object src/ray/CMakeFiles/ray_objlib.dir/gcs/tables.cc.o
    [ 36%] Building CXX object src/ray/CMakeFiles/ray_objlib.dir/gcs/redis_context.cc.o
    -- Looking for C++ include stdint.h - found
    -- Looking for C++ include inttypes.h
    -- Looking for C++ include inttypes.h - found
    -- Looking for C++ include sys/types.h
    [ 37%] Building CXX object src/ray/CMakeFiles/ray_objlib.dir/gcs/asio.cc.o
    [ 38%] Linking CXX shared library libray_redis_module.so
    -- Looking for C++ include sys/types.h - found
    -- Looking for C++ include sys/stat.h
    [ 38%] Built target ray_redis_module
    [ 39%] Building CXX object src/common/CMakeFiles/common.dir/logging.cc.o
    -- Looking for C++ include sys/stat.h - found
    -- Looking for C++ include fnmatch.h
    -- Looking for C++ include fnmatch.h - found
    -- Looking for C++ include stddef.h
    -- Looking for C++ include stddef.h - found
    -- Check size of uint32_t
    -- Check size of uint32_t - done
    -- Looking for strtoll
    [ 40%] Building CXX object src/common/CMakeFiles/common.dir/state/redis.cc.o
    [ 41%] Building C object src/ray/CMakeFiles/ray_objlib.dir/__/common/thirdparty/ae/ae.c.o
    -- Looking for strtoll - found
    -- Looking for pthread.h
    [ 42%] Building CXX object src/common/CMakeFiles/common.dir/state/table.cc.o
    -- Looking for pthread.h - found
    -- Looking for pthread_create
    [ 43%] Building C object src/ray/CMakeFiles/ray_objlib.dir/__/common/thirdparty/hiredis/async.c.o
    -- Looking for pthread_create - found
    -- Found Threads: TRUE
    -- Check size of pthread_rwlock_t
    [ 44%] Building CXX object src/common/CMakeFiles/common.dir/state/object_table.cc.o
    -- Check size of pthread_rwlock_t - done
    [ 45%] Linking CXX static library liblocal_scheduler_client.a
    -- Configuring done
    -- Generating done
    -- Build files have been written to: /Users/gwheeler/repos/ray/python/ray/core/gflags_ep-prefix/src/gflags_ep
    [ 46%] Performing build step for 'gflags_ep'
    [ 46%] Built target local_scheduler_client
    [ 47%] Building C object src/ray/CMakeFiles/ray_objlib.dir/__/common/thirdparty/hiredis/dict.c.o
    Scanning dependencies of target gflags_nothreads_static
    [ 12%] Building CXX object CMakeFiles/gflags_nothreads_static.dir/src/gflags.cc.o
    /Users/gwheeler/repos/ray/src/common/thirdparty/hiredis/dict.c:53:21: warning: unused function 'dictGenHashFunction' [-Wunused-function]
    static unsigned int dictGenHashFunction(const unsigned char *buf, int len) {
                        ^
    /Users/gwheeler/repos/ray/src/common/thirdparty/hiredis/dict.c:73:14: warning: unused function 'dictCreate' [-Wunused-function]
    static dict *dictCreate(dictType *type, void *privDataPtr) {
                 ^
    /Users/gwheeler/repos/ray/src/common/thirdparty/hiredis/dict.c:160:12: warning: unused function 'dictReplace' [-Wunused-function]
    static int dictReplace(dict *ht, void *key, void *val) {
               ^
    /Users/gwheeler/repos/ray/src/common/thirdparty/hiredis/dict.c:182:12: warning: unused function 'dictDelete' [-Wunused-function]
    static int dictDelete(dict *ht, const void *key) {
               ^
    /Users/gwheeler/repos/ray/src/common/thirdparty/hiredis/dict.c:238:13: warning: unused function 'dictRelease' [-Wunused-function]
    static void dictRelease(dict *ht) {
                ^
    /Users/gwheeler/repos/ray/src/common/thirdparty/hiredis/dict.c:258:22: warning: unused function 'dictGetIterator' [-Wunused-function]
    static dictIterator *dictGetIterator(dict *ht) {
                         ^
    /Users/gwheeler/repos/ray/src/common/thirdparty/hiredis/dict.c:268:19: warning: unused function 'dictNext' [-Wunused-function]
    static dictEntry *dictNext(dictIterator *iter) {
                      ^
    /Users/gwheeler/repos/ray/src/common/thirdparty/hiredis/dict.c:288:13: warning: unused function 'dictReleaseIterator' [-Wunused-function]
    static void dictReleaseIterator(dictIterator *iter) {
                ^
    8 warnings generated.
    [ 48%] Building CXX object src/common/CMakeFiles/common.dir/state/task_table.cc.o
    Scanning dependencies of target gflags_static
    [ 25%] Building CXX object CMakeFiles/gflags_static.dir/src/gflags.cc.o
    [ 37%] Building CXX object CMakeFiles/gflags_nothreads_static.dir/src/gflags_reporting.cc.o
    [ 49%] Building C object src/ray/CMakeFiles/ray_objlib.dir/__/common/thirdparty/hiredis/hiredis.c.o
    [ 50%] Building CXX object CMakeFiles/gflags_static.dir/src/gflags_reporting.cc.o
    [ 50%] Building C object src/ray/CMakeFiles/ray_objlib.dir/__/common/thirdparty/hiredis/net.c.o
    [ 51%] Building CXX object src/common/CMakeFiles/common.dir/state/db_client_table.cc.o
    [ 62%] Building CXX object CMakeFiles/gflags_nothreads_static.dir/src/gflags_completions.cc.o
    [ 52%] Building C object src/ray/CMakeFiles/ray_objlib.dir/__/common/thirdparty/hiredis/read.c.o
    [ 75%] Building CXX object CMakeFiles/gflags_static.dir/src/gflags_completions.cc.o
    [ 53%] Building CXX object src/common/CMakeFiles/common.dir/state/driver_table.cc.o
    [ 54%] Building C object src/ray/CMakeFiles/ray_objlib.dir/__/common/thirdparty/hiredis/sds.c.o
    [ 55%] Building CXX object src/common/CMakeFiles/common.dir/state/actor_notification_table.cc.o
    [ 56%] Building CXX object src/common/CMakeFiles/common.dir/state/local_scheduler_table.cc.o
    [ 56%] Built target ray_objlib
    [ 57%] Building CXX object src/common/CMakeFiles/common.dir/state/error_table.cc.o
    [ 87%] Linking CXX static library lib/libgflags.a
    [100%] Linking CXX static library lib/libgflags_nothreads.a
    [100%] Built target gflags_static
    [ 58%] Linking CXX static library libray.a
    [100%] Built target gflags_nothreads_static
    [ 59%] Performing install step for 'gflags_ep'
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: libray.a(dict.c.o) has no symbols
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: libray.a(dict.c.o) has no symbols
    [ 59%] Built target ray_static
    [ 60%] Building C object src/common/CMakeFiles/common.dir/thirdparty/ae/ae.c.o
    [ 50%] Built target gflags_nothreads_static
    [100%] Built target gflags_static
    Install the project...
    -- Install configuration: "Release"
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/gflags_ep-prefix/src/gflags_ep/lib/cmake/gflags/gflags-config.cmake
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/gflags_ep-prefix/src/gflags_ep/lib/cmake/gflags/gflags-config-version.cmake
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/gflags_ep-prefix/src/gflags_ep/lib/cmake/gflags/gflags-targets.cmake
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/gflags_ep-prefix/src/gflags_ep/lib/cmake/gflags/gflags-targets-release.cmake
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/gflags_ep-prefix/src/gflags_ep/bin/gflags_completions.sh
    -- Installing: /Users/gwheeler/repos/ray/python/ray/core/gflags_ep-prefix/src/gflags_ep/lib/pkgconfig/gflags.pc
    -- Installing: /Users/gwheeler/.cmake/packages/gflags/059aa8b00500f479347e236d14c1ead2
    [ 61%] Completed 'gflags_ep'
    [ 62%] Linking CXX shared library libray.dylib
    [ 62%] Built target gflags_ep
    [ 63%] Building C object src/common/CMakeFiles/common.dir/thirdparty/sha256.c.o
    [ 63%] Built target ray_shared
    [ 63%] Building CXX object src/ray/gcs/CMakeFiles/asio_test.dir/asio_test.cc.o
    Scanning dependencies of target client_test
    [ 64%] Building CXX object src/ray/gcs/CMakeFiles/client_test.dir/client_test.cc.o
    [ 65%] Linking CXX static library libcommon.a
    [ 65%] Built target common
    Scanning dependencies of target redis_tests
    Scanning dependencies of target db_tests
    Scanning dependencies of target task_tests
    Scanning dependencies of target task_table_tests
    Scanning dependencies of target object_table_tests
    [ 66%] Building CXX object src/common/CMakeFiles/io_tests.dir/test/io_tests.cc.o
    [ 68%] Building CXX object src/common/CMakeFiles/redis_tests.dir/test/redis_tests.cc.o
    [ 68%] Building CXX object src/common/CMakeFiles/db_tests.dir/test/db_tests.cc.o
    [ 69%] Building CXX object src/common/CMakeFiles/object_table_tests.dir/test/object_table_tests.cc.o
    [ 70%] Building CXX object src/common/CMakeFiles/task_tests.dir/test/task_tests.cc.o
    [ 71%] Building CXX object src/common/CMakeFiles/task_table_tests.dir/test/task_table_tests.cc.o
    [ 72%] Linking CXX executable io_tests
    [ 72%] Built target io_tests
    [ 73%] Building CXX object src/plasma/CMakeFiles/client_tests.dir/test/client_tests.cc.o
    /Users/gwheeler/repos/ray/src/common/test/task_table_tests.cc:149:6: warning: unused function 'subscribe_timeout_test' [-Wunused-function]
    TEST subscribe_timeout_test(void) {
         ^
    /Users/gwheeler/repos/ray/src/common/test/task_table_tests.cc:192:6: warning: unused function 'publish_timeout_test' [-Wunused-function]
    TEST publish_timeout_test(void) {
         ^
    /Users/gwheeler/repos/ray/src/common/test/task_table_tests.cc:263:6: warning: unused function 'subscribe_retry_test' [-Wunused-function]
    TEST subscribe_retry_test(void) {
         ^
    /Users/gwheeler/repos/ray/src/common/test/task_table_tests.cc:313:6: warning: unused function 'publish_retry_test' [-Wunused-function]
    TEST publish_retry_test(void) {
         ^
    /Users/gwheeler/repos/ray/src/common/test/task_table_tests.cc:367:6: warning: unused function 'subscribe_late_test' [-Wunused-function]
    TEST subscribe_late_test(void) {
         ^
    /Users/gwheeler/repos/ray/src/common/test/task_table_tests.cc:412:6: warning: unused function 'publish_late_test' [-Wunused-function]
    TEST publish_late_test(void) {
         ^
    /Users/gwheeler/repos/ray/src/common/test/object_table_tests.cc:162:6: warning: unused function 'lookup_timeout_test' [-Wunused-function]
    TEST lookup_timeout_test(void) {
         ^
    /Users/gwheeler/repos/ray/src/common/test/object_table_tests.cc:201:6: warning: unused function 'add_timeout_test' [-Wunused-function]
    TEST add_timeout_test(void) {
         ^
    /Users/gwheeler/repos/ray/src/common/test/object_table_tests.cc:241:6: warning: unused function 'subscribe_timeout_test' [-Wunused-function]
    TEST subscribe_timeout_test(void) {
         ^
    /Users/gwheeler/repos/ray/src/common/test/object_table_tests.cc:448:6: warning: unused function 'lookup_late_test' [-Wunused-function]
    TEST lookup_late_test(void) {
         ^
    /Users/gwheeler/repos/ray/src/common/test/object_table_tests.cc:492:6: warning: unused function 'add_late_test' [-Wunused-function]
    TEST add_late_test(void) {
         ^
    /Users/gwheeler/repos/ray/src/common/test/object_table_tests.cc:537:6: warning: unused function 'subscribe_late_test' [-Wunused-function]
    TEST subscribe_late_test(void) {
         ^
    /Users/gwheeler/repos/ray/src/common/test/object_table_tests.cc:670:6: warning: unused function 'subscribe_object_present_test' [-Wunused-function]
    TEST subscribe_object_present_test(void) {
         ^
    [ 74%] Linking CXX executable task_tests
    [ 74%] Built target task_tests
    6 warnings generated.
    [ 75%] Linking CXX executable redis_tests
    [ 76%] Linking CXX executable task_table_tests
    [ 77%] Linking CXX executable db_tests
    [ 77%] Built target redis_tests
    [ 77%] Built target task_table_tests
    [ 77%] Built target db_tests
    Scanning dependencies of target manager_tests
    [ 78%] Building CXX object src/plasma/CMakeFiles/manager_tests.dir/test/manager_tests.cc.o
    7 warnings generated.
    Scanning dependencies of target plasma_manager
    [ 79%] Linking CXX executable object_table_tests
    [ 80%] Building CXX object src/plasma/CMakeFiles/plasma_manager.dir/plasma_manager.cc.o
    Scanning dependencies of target local_scheduler
    [ 80%] Built target object_table_tests
    Scanning dependencies of target local_scheduler_library
    [ 81%] Building CXX object src/local_scheduler/CMakeFiles/local_scheduler.dir/local_scheduler.cc.o
    [ 82%] Building CXX object src/local_scheduler/CMakeFiles/local_scheduler_library.dir/local_scheduler_extension.cc.o
    [ 83%] Linking CXX executable asio_test
    [ 83%] Built target asio_test
    Scanning dependencies of target local_scheduler_tests
    [ 84%] Building CXX object src/local_scheduler/CMakeFiles/local_scheduler_tests.dir/test/local_scheduler_tests.cc.o
    Scanning dependencies of target global_scheduler
    [ 85%] Building CXX object src/global_scheduler/CMakeFiles/global_scheduler.dir/global_scheduler.cc.o
    In file included from /Users/gwheeler/repos/ray/src/ray/gcs/client_test.cc:7:
    /Users/gwheeler/repos/ray/src/common/cmake/../thirdparty/hiredis/adapters/ae.h:102:12: warning: unused function 'redisAeAttach' [-Wunused-function]
    static int redisAeAttach(aeEventLoop *loop, redisAsyncContext *ac) {
               ^
    [ 86%] Linking CXX executable client_tests
    [ 86%] Built target client_tests
    [ 87%] Building CXX object src/plasma/CMakeFiles/manager_tests.dir/plasma_manager.cc.o
    [ 88%] Building CXX object src/local_scheduler/CMakeFiles/local_scheduler_library.dir/__/common/lib/python/common_extension.cc.o
    [ 89%] Building CXX object src/local_scheduler/CMakeFiles/local_scheduler.dir/local_scheduler_algorithm.cc.o
    [ 90%] Building CXX object src/local_scheduler/CMakeFiles/local_scheduler_library.dir/__/common/lib/python/config_extension.cc.o
    1 warning generated.
    [ 91%] Linking CXX executable client_test
    [ 91%] Built target client_test
    [ 92%] Building CXX object src/local_scheduler/CMakeFiles/local_scheduler_tests.dir/local_scheduler.cc.o
    [ 93%] Linking CXX shared library liblocal_scheduler_library.so
    [ 93%] Built target local_scheduler_library
    [ 94%] Building CXX object src/global_scheduler/CMakeFiles/global_scheduler.dir/global_scheduler_algorithm.cc.o
    [ 95%] Building CXX object src/local_scheduler/CMakeFiles/local_scheduler_tests.dir/local_scheduler_algorithm.cc.o
    [ 96%] Linking CXX executable plasma_manager
    [ 96%] Built target plasma_manager
    [ 97%] Linking CXX executable global_scheduler
    [ 98%] Linking CXX executable manager_tests
    [ 98%] Built target global_scheduler
    [ 98%] Built target manager_tests
    [ 99%] Linking CXX executable local_scheduler
    [ 99%] Built target local_scheduler
    [100%] Linking CXX executable local_scheduler_tests
    [100%] Built target local_scheduler_tests
    + popd
    ~/repos/ray/python
    + cp /Users/gwheeler/repos/ray/thirdparty/pkg/arrow/cpp/build/cpp-install/bin/plasma_store /Users/gwheeler/repos/ray/python/ray/core/src/plasma/
    error: [Errno 2] No such file or directory: './ray/pyarrow_files/pyarrow'
  Rolling back uninstall of ray
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/bin/ray
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray-0.3.1.dist-info/DESCRIPTION.rst
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray-0.3.1.dist-info/INSTALLER
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray-0.3.1.dist-info/METADATA
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray-0.3.1.dist-info/RECORD
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray-0.3.1.dist-info/WHEEL
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray-0.3.1.dist-info/entry_points.txt
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray-0.3.1.dist-info/metadata.json
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray-0.3.1.dist-info/top_level.txt
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/WebUI.ipynb
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__pycache__/actor.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__pycache__/log_monitor.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__pycache__/monitor.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__pycache__/ray_constants.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__pycache__/serialization.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__pycache__/services.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__pycache__/signature.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__pycache__/utils.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/__pycache__/worker.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/actor.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/__pycache__/autoscaler.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/__pycache__/commands.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/__pycache__/node_provider.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/__pycache__/tags.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/__pycache__/updater.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/autoscaler.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/aws/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/aws/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/aws/__pycache__/config.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/aws/__pycache__/node_provider.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/aws/config.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/aws/node_provider.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/commands.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/node_provider.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/tags.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/autoscaler/updater.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/cloudpickle/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/cloudpickle/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/cloudpickle/__pycache__/cloudpickle.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/cloudpickle/cloudpickle.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/common/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/common/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/Arg.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/DriverTableMessage.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/LocalSchedulerInfoMessage.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/ObjectInfo.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/ResourcePair.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/ResultTableReply.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/SubscribeToDBClientTableReply.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/SubscribeToNotificationsReply.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/TaskExecutionDependencies.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/TaskInfo.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/TaskReply.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/Arg.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/DriverTableMessage.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/LocalSchedulerInfoMessage.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/ObjectInfo.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/ResourcePair.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/ResultTableReply.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/SubscribeToDBClientTableReply.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/SubscribeToNotificationsReply.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/TaskExecutionDependencies.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/TaskInfo.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/TaskReply.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/generated/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/catapult_files/index.html
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/catapult_files/trace_viewer_full.html
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/common/redis_module/libray_redis_module.so
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/common/thirdparty/redis/src/redis-server
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/global_scheduler/global_scheduler
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/local_scheduler/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/local_scheduler/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/local_scheduler/liblocal_scheduler_library.so
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/local_scheduler/local_scheduler
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/numbuf/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/numbuf/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/plasma/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/plasma/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/plasma/plasma_manager
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/core/src/plasma/plasma_store
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/dataframe/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/dataframe/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/dataframe/__pycache__/dataframe.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/dataframe/__pycache__/pandas_code_gen.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/dataframe/__pycache__/series.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/dataframe/dataframe.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/dataframe/pandas_code_gen.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/dataframe/series.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/__pycache__/state.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/__pycache__/tfutils.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/__pycache__/ui.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/distributed/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/distributed/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/distributed/__pycache__/core.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/distributed/__pycache__/linalg.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/distributed/__pycache__/random.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/distributed/core.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/distributed/linalg.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/distributed/random.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/remote/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/remote/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/remote/__pycache__/core.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/remote/__pycache__/linalg.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/remote/__pycache__/random.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/remote/core.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/remote/linalg.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/array/remote/random.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/state.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/tfutils.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/experimental/ui.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/global_scheduler/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/global_scheduler/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/global_scheduler/__pycache__/global_scheduler_services.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/global_scheduler/global_scheduler_services.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/local_scheduler/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/local_scheduler/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/local_scheduler/__pycache__/local_scheduler_services.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/local_scheduler/local_scheduler_services.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/log_monitor.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/monitor.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/plasma/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/plasma/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/plasma/__pycache__/plasma.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/plasma/__pycache__/utils.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/plasma/plasma.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/plasma/utils.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__init__.pxd
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/compat.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/feather.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/filesystem.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/formatting.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/hdfs.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/ipc.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/orc.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/pandas_compat.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/parquet.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/serialization.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/types.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/__pycache__/util.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/_config.pyx
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/_orc.pxd
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/_orc.pyx
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/_parquet.pxd
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/_parquet.pyx
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/array.pxi
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/compat.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/error.pxi
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/feather.pxi
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/feather.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/filesystem.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/formatting.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/hdfs.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/io-hdfs.pxi
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/io.pxi
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/ipc.pxi
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/ipc.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/lib.cpython-36m-darwin.so
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/lib.pxd
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/lib.pyx
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/lib_api.h
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/libarrow.0.0.0.dylib
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/libarrow.0.dylib
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/libarrow.dylib
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/libarrow_python.0.0.0.dylib
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/libarrow_python.0.dylib
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/libarrow_python.dylib
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/libplasma.0.0.0.dylib
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/libplasma.0.dylib
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/libplasma.dylib
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/memory.pxi
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/orc.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/pandas_compat.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/parquet.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/plasma.cpython-36m-darwin.so
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/plasma.pyx
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/plasma_store
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/public-api.pxi
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/scalar.pxi
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/serialization.pxi
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/serialization.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/table.pxi
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/types.pxi
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/types.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/pyarrow_files/pyarrow/util.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/ray_constants.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/__pycache__/agent.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/__pycache__/rollout.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/__pycache__/train.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__pycache__/a3c.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__pycache__/a3c_evaluator.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__pycache__/common.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__pycache__/policy.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__pycache__/shared_model.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__pycache__/shared_model_lstm.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__pycache__/shared_torch_policy.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__pycache__/tfpolicy.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/__pycache__/torchpolicy.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/a3c.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/a3c_evaluator.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/common.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/policy.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/shared_model.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/shared_model_lstm.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/shared_torch_policy.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/tfpolicy.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/a3c/torchpolicy.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/agent.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/bc/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/bc/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/bc/__pycache__/bc.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/bc/__pycache__/bc_evaluator.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/bc/__pycache__/experience_dataset.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/bc/__pycache__/policy.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/bc/bc.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/bc/bc_evaluator.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/bc/experience_dataset.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/bc/policy.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/__pycache__/dqn.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/__pycache__/dqn_evaluator.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/__pycache__/dqn_replay_evaluator.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/__pycache__/models.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/__pycache__/replay_buffer.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/common/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/common/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/common/__pycache__/schedules.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/common/__pycache__/segment_tree.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/common/__pycache__/wrappers.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/common/schedules.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/common/segment_tree.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/common/wrappers.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/dqn.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/dqn_evaluator.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/dqn_replay_evaluator.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/models.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/dqn/replay_buffer.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/__pycache__/es.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/__pycache__/optimizers.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/__pycache__/policies.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/__pycache__/tabular_logger.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/__pycache__/utils.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/es.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/optimizers.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/policies.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/tabular_logger.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/es/utils.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/examples/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/examples/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/examples/__pycache__/multiagent_mountaincar.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/examples/__pycache__/multiagent_mountaincar_env.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/examples/__pycache__/multiagent_pendulum.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/examples/__pycache__/multiagent_pendulum_env.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/examples/multiagent_mountaincar.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/examples/multiagent_mountaincar_env.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/examples/multiagent_pendulum.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/examples/multiagent_pendulum_env.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/action_dist.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/catalog.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/convnet.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/fcnet.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/lstm.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/misc.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/model.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/multiagentfcnet.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/preprocessors.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/__pycache__/visionnet.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/action_dist.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/catalog.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/convnet.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/fcnet.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/lstm.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/misc.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/model.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/multiagentfcnet.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/preprocessors.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/pytorch/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/pytorch/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/pytorch/__pycache__/fcnet.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/pytorch/__pycache__/misc.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/pytorch/__pycache__/model.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/pytorch/__pycache__/visionnet.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/pytorch/fcnet.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/pytorch/misc.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/pytorch/model.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/pytorch/visionnet.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/models/visionnet.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/__pycache__/async.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/__pycache__/evaluator.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/__pycache__/local_sync.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/__pycache__/multi_gpu.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/__pycache__/multi_gpu_impl.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/__pycache__/optimizer.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/__pycache__/sample_batch.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/async.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/evaluator.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/local_sync.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/multi_gpu.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/multi_gpu_impl.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/optimizer.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/optimizers/sample_batch.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/__pycache__/loss.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/__pycache__/ppo.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/__pycache__/ppo_evaluator.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/__pycache__/rollout.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/__pycache__/utils.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/loss.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/ppo.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/ppo_evaluator.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/rollout.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/ppo/utils.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/rollout.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/__pycache__/mock_evaluator.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/__pycache__/test_catalog.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/__pycache__/test_checkpoint_restore.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/__pycache__/test_evaluators.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/__pycache__/test_filters.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/__pycache__/test_optimizers.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/__pycache__/test_supported_spaces.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/mock_evaluator.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/test_catalog.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/test_checkpoint_restore.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/test_evaluators.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/test_filters.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/test_optimizers.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/test/test_supported_spaces.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/train.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/__pycache__/error.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/__pycache__/filter.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/__pycache__/filter_manager.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/__pycache__/process_rollout.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/__pycache__/reshaper.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/__pycache__/sampler.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/__pycache__/timer.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/error.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/filter.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/filter_manager.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/process_rollout.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/reshaper.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/sampler.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/rllib/utils/timer.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/scripts/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/scripts/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/scripts/__pycache__/scripts.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/scripts/scripts.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/serialization.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/services.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/signature.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/test/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/test/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/test/__pycache__/test_functions.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/test/__pycache__/test_utils.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/test/test_functions.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/test/test_utils.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/config_parser.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/error.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/function_runner.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/hyperband.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/logger.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/median_stopping_rule.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/pbt.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/registry.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/result.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/trainable.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/trial.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/trial_runner.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/trial_scheduler.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/tune.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/variant_generator.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/visual_utils.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/__pycache__/web_server.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/config_parser.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/error.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/function_runner.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/hyperband.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/logger.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/median_stopping_rule.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/pbt.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/registry.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/result.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/trainable.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/trial.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/trial_runner.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/trial_scheduler.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/tune.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/variant_generator.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/visual_utils.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/tune/web_server.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/utils.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/worker.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/workers/__init__.py
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/workers/__pycache__/__init__.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/workers/__pycache__/default_worker.cpython-36.pyc
  Replacing /Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/ray/workers/default_worker.py
Cleaning up...
Command "/Users/gwheeler/anaconda3/envs/notebooks/bin/python -c "import setuptools, tokenize;__file__='/Users/gwheeler/repos/ray/python/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" develop --no-deps" failed with error code 1 in /Users/gwheeler/repos/ray/python/
Exception information:
Traceback (most recent call last):
  File "/Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/pip/basecommand.py", line 215, in main
    status = self.run(options, args)
  File "/Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/pip/commands/install.py", line 342, in run
    prefix=options.prefix_path,
  File "/Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/pip/req/req_set.py", line 784, in install
    **kwargs
  File "/Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/pip/req/req_install.py", line 845, in install
    install_options, global_options, prefix=prefix)
  File "/Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/pip/req/req_install.py", line 1007, in install_editable
    show_stdout=False)
  File "/Users/gwheeler/anaconda3/envs/notebooks/lib/python3.6/site-packages/pip/utils/__init__.py", line 707, in call_subprocess
    % (command_desc, proc.returncode, cwd))
pip.exceptions.InstallationError: Command "/Users/gwheeler/anaconda3/envs/notebooks/bin/python -c "import setuptools, tokenize;__file__='/Users/gwheeler/repos/ray/python/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" develop --no-deps" failed with error code 1 in /Users/gwheeler/repos/ray/python/
gramster commented 6 years ago

Ah, now I see the full logs, looks like the same problem with pyarrow; I missed that before.

pcmoritz commented 6 years ago

Thanks for the log, that's very helpful! The error seems to be here: https://github.com/ray-project/ray/blob/master/python/setup.py#L73

It doesn't find ray/python/ray/pyarrow_files/pyarrow (where the initial ray/ is the directory of the cloned git repo). Can you check if this directory exists (in that case there is some issue with relative paths)?

pcmoritz commented 6 years ago

If it doesn't exist: It should have been generated by ray/thirdparty/scripts/build_arrow.sh. So running that script manually and posting the output should give us some more ideas on what is going on :)

gramster commented 6 years ago

It isn't there; running that script doesn't see to create it either.

In the script output I do see a weird path + [[ ! -d /Users/gwheeler/repos/ray/thirdparty/scripts/..//pkg/arrow ]]

Full output:

(notebooks) ➜  ray git:(master) ✗ bash /Users/gwheeler/repos/ray/thirdparty/scripts/build_arrow.sh /Users/gwheeler/anaconda3/envs/notebooks/bin/python
+ set -e
+++ dirname /Users/gwheeler/repos/ray/thirdparty/scripts/build_arrow.sh
++ cd /Users/gwheeler/repos/ray/thirdparty/scripts
++ pwd
+ TP_DIR=/Users/gwheeler/repos/ray/thirdparty/scripts/../
+ [[ -z /Users/gwheeler/anaconda3/envs/notebooks/bin/python ]]
+ PYTHON_EXECUTABLE=/Users/gwheeler/anaconda3/envs/notebooks/bin/python
+ echo 'Using Python executable /Users/gwheeler/anaconda3/envs/notebooks/bin/python.'
Using Python executable /Users/gwheeler/anaconda3/envs/notebooks/bin/python.
++ uname
+ unamestr=Darwin
+ [[ Darwin == \L\i\n\u\x ]]
+ FLATBUFFERS_HOME=
+ [[ Darwin == \L\i\n\u\x ]]
+ [[ Darwin == \D\a\r\w\i\n ]]
++ sysctl -n hw.ncpu
+ PARALLEL=8
+ echo 'Platform is macosx.'
Platform is macosx.
+ [[ ! -d /Users/gwheeler/repos/ray/thirdparty/scripts/..//pkg/arrow ]]
pcmoritz commented 6 years ago

Thanks! What is happening here is that the script isn't executed because the directory /Users/gwheeler/repos/ray/thirdparty/pkg/arrow already exists. Can you rm -rf it and rerun the build_arrow.sh (again providing the output)? I think the first time there was some error.

gramster commented 6 years ago

I did a clean clone of the repo and tried again as it looked like the script thought the step had succeeded in the past. Found an upstream error; here's the tail of the output if I just run that script in the clean repo:

-- Build files have been written to: /Users/gwheeler/repos/ray/thirdparty/build/parquet-cpp/zlib_ep-prefix/src/zlib_ep-build
[ 20%] Performing build step for 'zlib_ep'
-- [download 70% complete]
-- [download 71% complete]
-- [download 72% complete]
-- [download 73% complete]
-- [download 74% complete]
-- [download 75% complete]
Scanning dependencies of target zlib
Scanning dependencies of target zlibstatic
[  8%] Building C object CMakeFiles/zlibstatic.dir/adler32.o
[  8%] Building C object CMakeFiles/zlib.dir/compress.o
[  8%] Building C object CMakeFiles/zlib.dir/adler32.o
[ 11%] Building C object CMakeFiles/zlibstatic.dir/compress.o
-- [download 76% complete]
-- [download 77% complete]
-- [download 78% complete]
-- [download 79% complete]
-- [download 80% complete]
[ 16%] Building C object CMakeFiles/zlib.dir/crc32.o
[ 16%] Building C object CMakeFiles/zlibstatic.dir/crc32.o
[ 19%] Building C object CMakeFiles/zlib.dir/deflate.o
-- [download 81% complete]
-- [download 82% complete]
-- [download 83% complete]
-- [download 84% complete]
-- [download 85% complete]
[ 25%] Building C object CMakeFiles/zlibstatic.dir/deflate.o
[ 25%] Building C object CMakeFiles/zlib.dir/gzclose.o
-- [download 86% complete]
-- [download 87% complete]
[ 27%] Building C object CMakeFiles/zlibstatic.dir/gzclose.o
-- [download 88% complete]
-- [download 89% complete]
-- [download 90% complete]
-- [download 91% complete]
-- [download 92% complete]
-- [download 93% complete]
[ 30%] Building C object CMakeFiles/zlibstatic.dir/gzlib.o
-- [download 94% complete]
[ 33%] Building C object CMakeFiles/zlib.dir/gzlib.o
[ 36%] Building C object CMakeFiles/zlib.dir/gzread.o
-- [download 95% complete]
-- [download 96% complete]
-- [download 97% complete]
-- [download 98% complete]
-- [download 99% complete]
-- [download 100% complete]
-- Downloading... done
[ 38%] Building C object CMakeFiles/zlibstatic.dir/gzread.o
[ 41%] Building C object CMakeFiles/zlibstatic.dir/gzwrite.o
-- extracting...
     src='/Users/gwheeler/repos/ray/thirdparty/build/parquet-cpp/thrift_ep-prefix/src/thrift-0.11.0.tar.gz'
     dst='/Users/gwheeler/repos/ray/thirdparty/build/parquet-cpp/thrift_ep-prefix/src/thrift_ep'
-- extracting... [tar xfz]
[ 44%] Building C object CMakeFiles/zlib.dir/gzwrite.o
[ 47%] Building C object CMakeFiles/zlib.dir/inflate.o
[ 50%] Building C object CMakeFiles/zlibstatic.dir/inflate.o
/Users/gwheeler/repos/ray/thirdparty/build/parquet-cpp/zlib_ep-prefix/src/zlib_ep/inflate.c:1507:61: warning: shifting a negative signed value is undefined
      [-Wshift-negative-value]
    if (strm == Z_NULL || strm->state == Z_NULL) return -1L << 16;
                                                        ~~~ ^
[ 52%] Building C object CMakeFiles/zlibstatic.dir/infback.o
/Users/gwheeler/repos/ray/thirdparty/build/parquet-cpp/zlib_ep-prefix/src/zlib_ep/inflate.c:1507:61: warning: shifting a negative signed value is undefined
      [-Wshift-negative-value]
    if (strm == Z_NULL || strm->state == Z_NULL) return -1L << 16;
                                                        ~~~ ^
[ 55%] Building C object CMakeFiles/zlib.dir/infback.o
1 warning generated.
[ 58%] Building C object CMakeFiles/zlib.dir/inftrees.o
1 warning generated.
[ 61%] Building C object CMakeFiles/zlibstatic.dir/inftrees.o
[ 63%] Building C object CMakeFiles/zlibstatic.dir/inffast.o
[ 66%] Building C object CMakeFiles/zlib.dir/inffast.o
[ 69%] Building C object CMakeFiles/zlib.dir/trees.o
-- extracting... [analysis]
-- extracting... [rename]
-- extracting... [clean up]
-- extracting... done
[ 23%] No patch step for 'thrift_ep'
[ 72%] Building C object CMakeFiles/zlibstatic.dir/trees.o
[ 25%] No update step for 'thrift_ep'
[ 75%] Building C object CMakeFiles/zlibstatic.dir/uncompr.o
[ 28%] Performing configure step for 'thrift_ep'
[ 77%] Building C object CMakeFiles/zlib.dir/uncompr.o
[ 80%] Building C object CMakeFiles/zlibstatic.dir/zutil.o
[ 83%] Building C object CMakeFiles/zlib.dir/zutil.o
-- The C compiler identification is AppleClang 9.0.0.9000039
[ 86%] Linking C static library libz.a
[ 88%] Linking C shared library libz.dylib
-- The CXX compiler identification is AppleClang 9.0.0.9000039
-- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
[ 88%] Built target zlibstatic
[ 88%] Built target zlib
Scanning dependencies of target minigzip
Scanning dependencies of target example
[ 91%] Building C object CMakeFiles/minigzip.dir/test/minigzip.o
[ 94%] Building C object CMakeFiles/example.dir/test/example.o
-- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -- works
-- Detecting C compiler ABI info
[ 97%] Linking C executable minigzip
[100%] Linking C executable example
[100%] Built target minigzip
[100%] Built target example
-- Detecting C compiler ABI info - done
-- Detecting C compile features
[ 30%] Performing install step for 'zlib_ep'
[ 75%] Built target zlib
[ 88%] Built target zlibstatic
[ 94%] Built target minigzip
[100%] Built target example
Install the project...
-- Install configuration: "RELEASE"
-- Installing: /Users/gwheeler/repos/ray/thirdparty/build/parquet-cpp/zlib_ep/src/zlib_ep-install/lib/libz.1.2.8.dylib
-- Installing: /Users/gwheeler/repos/ray/thirdparty/build/parquet-cpp/zlib_ep/src/zlib_ep-install/lib/libz.1.dylib
-- Installing: /Users/gwheeler/repos/ray/thirdparty/build/parquet-cpp/zlib_ep/src/zlib_ep-install/lib/libz.dylib
-- Installing: /Users/gwheeler/repos/ray/thirdparty/build/parquet-cpp/zlib_ep/src/zlib_ep-install/lib/libz.a
-- Installing: /Users/gwheeler/repos/ray/thirdparty/build/parquet-cpp/zlib_ep/src/zlib_ep-install/include/zconf.h
-- Installing: /Users/gwheeler/repos/ray/thirdparty/build/parquet-cpp/zlib_ep/src/zlib_ep-install/include/zlib.h
-- Installing: /Users/gwheeler/repos/ray/thirdparty/build/parquet-cpp/zlib_ep/src/zlib_ep-install/share/man/man3/zlib.3
-- Installing: /Users/gwheeler/repos/ray/thirdparty/build/parquet-cpp/zlib_ep/src/zlib_ep-install/share/pkgconfig/zlib.pc
[ 33%] Completed 'zlib_ep'
[ 33%] Built target zlib_ep
-- Detecting C compile features - done
-- Check for working CXX compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
-- Check for working CXX compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Parsed Thrift package version: 0.11.0
-- Parsed Thrift version: 0.11.0 (0.1.0)
-- Setting C++11 as the default language level.
-- To specify a different C++ language level, set CMAKE_CXX_STANDARD
-- libevent NOT found.
-- Could NOT find RUN_HASKELL (missing: RUN_HASKELL)
-- Could NOT find CABAL (missing: CABAL)
-- Looking for arpa/inet.h
-- Looking for arpa/inet.h - found
-- Looking for fcntl.h
-- Looking for fcntl.h - found
-- Looking for getopt.h
-- Looking for getopt.h - found
-- Looking for inttypes.h
-- Looking for inttypes.h - found
-- Looking for netdb.h
-- Looking for netdb.h - found
-- Looking for netinet/in.h
-- Looking for netinet/in.h - found
-- Looking for stdint.h
-- Looking for stdint.h - found
-- Looking for unistd.h
-- Looking for unistd.h - found
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for sys/time.h
-- Looking for sys/time.h - found
-- Looking for sys/param.h
-- Looking for sys/param.h - found
-- Looking for sys/resource.h
-- Looking for sys/resource.h - found
-- Looking for sys/socket.h
-- Looking for sys/socket.h - found
-- Looking for sys/stat.h
-- Looking for sys/stat.h - found
-- Looking for sys/un.h
-- Looking for sys/un.h - found
-- Looking for sys/poll.h
-- Looking for sys/poll.h - found
-- Looking for sys/select.h
-- Looking for sys/select.h - found
-- Looking for sched.h
-- Looking for sched.h - found
-- Looking for string.h
-- Looking for string.h - found
-- Looking for strings.h
-- Looking for strings.h - found
-- Looking for gethostbyname
-- Looking for gethostbyname - found
-- Looking for gethostbyname_r
-- Looking for gethostbyname_r - not found
-- Looking for strerror_r
-- Looking for strerror_r - found
-- Looking for sched_get_priority_max
-- Looking for sched_get_priority_max - found
-- Looking for sched_get_priority_min
-- Looking for sched_get_priority_min - found
-- Performing Test STRERROR_R_CHAR_P
-- Performing Test STRERROR_R_CHAR_P - Failed
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - found
-- Found Threads: TRUE
-- Building without tests
-- Found FLEX: /usr/bin/flex (found version "2.5.35")
CMake Error at /usr/local/Cellar/cmake/3.10.2/share/cmake/Modules/FindBISON.cmake:102 (message):
  Command "/usr/local/opt/bison/bin/bison --version" failed with output:

Call Stack (most recent call first):
  compiler/cpp/CMakeLists.txt:33 (find_package)

-- Found BISON: /usr/local/opt/bison/bin/bison
-- Found OpenSSL: /usr/local/opt/openssl/lib/libcrypto.dylib (found version "1.0.2n")
-- Found ZLIB: /usr/lib/libz.dylib (found version "1.2.11")
-- ----------------------------------------------------------
-- Thrift version:                               0.11.0 (0.1.0)
-- Thrift package version:                       0.11.0
-- Build configuration Summary
--   Build Thrift compiler:                      ON
--   Build compiler plugin support:              OFF
--   Build with unit tests:                      OFF
--   Build examples:                             ON
--   Build Thrift libraries:                     ON
--  Language libraries:
--   Build C++ library:                          ON
--     C++ Language Level:                       C++11 [fallback to earlier if compiler does not support it]
--   Build C (GLib) library:                     OFF
--    - Disabled by WITH_C_GLIB=OFF
--    - GLib missing
--   Build Java library:                         OFF
--    - Disabled by WITH_JAVA=OFF
--    - Ant missing
--   Build Python library:                       OFF
--    - Disabled by WITH_PYTHON=OFF
--   Build Haskell library:                      OFF
--    - Disabled by WITH_HASKELL=OFF
--    - GHC missing
--    - Cabal missing
--  Library features:
--   Build shared libraries:                     ON
--   Build static libraries:                     ON
--   Build with Boost static link library:       OFF
--   Build with Boost thread support:            OFF
--   Build with boost/tr1/functional (forced)    OFF
--   Build with boost/smart_ptr (forced)         OFF
--   Build with C++ std::thread support:         OFF
--   Build with libevent support:                OFF
--   Build with OpenSSL support:                 ON
--   Build with Qt4 support:                     OFF
--   Build with Qt5 support:                     ON
--   Build with ZLIB support:                    ON
-- ----------------------------------------------------------
-- Configuring incomplete, errors occurred!
See also "/Users/gwheeler/repos/ray/thirdparty/build/parquet-cpp/thrift_ep-prefix/src/thrift_ep-build/CMakeFiles/CMakeOutput.log".
See also "/Users/gwheeler/repos/ray/thirdparty/build/parquet-cpp/thrift_ep-prefix/src/thrift_ep-build/CMakeFiles/CMakeError.log".
make[2]: *** [thrift_ep-prefix/src/thrift_ep-stamp/thrift_ep-configure] Error 1
make[1]: *** [CMakeFiles/thrift_ep.dir/all] Error 2
make: *** [all] Error 2
gramster commented 6 years ago

Interesting:

(notebooks) ➜  ray git:(master) which bison
/usr/bin/bison

but the configure script is running a different one:

(notebooks) ➜  ray git:(master) /usr/local/opt/bison/bin/bison --version
[1]    22550 illegal hardware instruction  /usr/local/opt/bison/bin/bison --version
gramster commented 6 years ago

I uninstalled bison with brew and reinstalled and now that error is gone. So I'll try again and report back.

My best guess as to what caused this is that I migrated my hard drive from a 3 year old Macbook to my current Macbook about 6 months ago. Perhaps there was some incompatibility and the old bison was problematic. I hope that is it and not drive corruption.

gramster commented 6 years ago

And I have success! Woot!

Thanks for your help; closing this.

pcmoritz commented 6 years ago

Great, thanks a lot for your patience :)

It is also possible to install the latest commit from pip by the way (but of course if you want to do development, getting the source to compile is crucial):

pip install -U https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-0.3.1-cp36-cp36m-macosx_10_6_intel.whl

We also upload wheels for each commit to S3, so installing from there is another option.

robertnishihara commented 6 years ago

The latest Mac wheels don't work unfortunately. See #1597.