Skip to content

Commit

Permalink
Merge pull request #795 from azavea/lf/remove-rc1
Browse files Browse the repository at this point in the history
[BACKPORT] Remove references to rc1
  • Loading branch information
lewfish committed Jun 12, 2019
2 parents aac4f09 + b75c152 commit b079823
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions docs/setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,24 +78,24 @@ Rather than running Raster Vision from inside a Docker container, you can direct

.. code-block:: console
> pip install rastervision==0.9.0rc1
> pip install rastervision==0.9.0
.. note:: Raster Vision requires Python 3 or later. Use ``pip3 install rastervision==0.9.0rc1`` if you have more than one version of Python installed.
.. note:: Raster Vision requires Python 3 or later. Use ``pip3 install rastervision==0.9.0`` if you have more than one version of Python installed.

.. note:: Because 0.9 is a release candidate at the moment, it is necessary to explicitly state the version when installing via pip.

Troubleshooting macOS Installation
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

If you encounter problems running ``pip install rastervision==0.9.0rc1`` on macOS, you may have to manually install Cython and pyproj.
If you encounter problems running ``pip install rastervision==0.9.0`` on macOS, you may have to manually install Cython and pyproj.

To circumvent a problem installing pyproj with Python 3.7, you may also have to install that library using ``git+https``:

.. code-block:: console
> pip install cython
> pip install git+https://github.com/jswhit/pyproj.git@e56e879438f0a1688b89b33228ebda0f0d885c19
> pip install rastervision==0.9.0rc1
> pip install rastervision==0.9.0
Using AWS, Tensorflow, and/or Keras
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand All @@ -104,7 +104,7 @@ If you'd like to use AWS, Tensorflow and/or Keras with Raster Vision, you can in

.. code-block:: console
> pip install rastervision[aws,tensorflow,tensorflow-gpu]==0.9.0rc1
> pip install rastervision[aws,tensorflow,tensorflow-gpu]==0.9.0
If you'd like to use Raster Vision with `Tensorflow Object Detection <https://github.com/tensorflow/models/tree/master/research/object_detection>`_ or `TensorFlow DeepLab <https://github.com/tensorflow/models/tree/master/research/deeplab>`_, you'll need to install these from `Azavea's fork <https://github.com/azavea/models/tree/AZ-v1.11-RV-v0.8.0>`_ of the models repository, since it contains some necessary changes that have not yet been merged back upstream. You will also need to install `Tippecanoe <https://github.com/mapbox/tippecanoe>`_ if you would like to do vector tile processing. For an example of setting these up, see the `Dockerfile <https://github.com/azavea/raster-vision/blob/lf/0.9/Dockerfile>`_.

Expand Down
2 changes: 1 addition & 1 deletion rastervision/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Library verison"""
__version__ = '0.9.0rc1'
__version__ = '0.9.0'

0 comments on commit b079823

Please sign in to comment.