Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ilanschnell committed Jul 24, 2015
1 parent d69ea05 commit 068da1c
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,35 +98,36 @@ To go back to the root environment, use
Building Your Own Packages
--------------------------

You can easily build your own packages for conda, and upload them to `Binstar
<https://binstar.org>`_, a free service for hosting packages for conda, as
well as other package managers. To build a package, create a recipe. See
http://github.com/conda/conda-recipes for many example recipes, and
You can easily build your own packages for conda, and upload them
to `anaconda.org <https://anaconda.org>`_, a free service for hosting
packages for conda, as well as other package managers.
To build a package, create a recipe.
See http://github.com/conda/conda-recipes for many example recipes, and
http://docs.continuum.io/conda/build.html for documentation on how to build
recipes.

To upload to Binstar, create an account on binstar.org. Then, install the
binstar client and login
To upload to anaconda.org, create an account. Then, install the
conda-server client and login

.. code-block:: bash
$ conda install binstar
$ binstar login
$ conda install conda-server
$ conda-server login
Then, after you build your recipe

.. code-block:: bash
$ conda build <recipe-dir>
you will be prompted to upload to binstar.
you will be prompted to upload to anaconda.org.

To add your Binstar channel, or the channel of others to conda so that ``conda
install`` will find and install their packages, run
To add your anaconda.org channel, or the channel of others to conda so
that ``conda install`` will find and install their packages, run

.. code-block:: bash
$ conda config --add channels https://conda.binstar.org/username
$ conda config --add channels https://conda.anaconda.org/username
(replacing ``username`` with the user name of the person whose channel you want
to add).
Expand Down

0 comments on commit 068da1c

Please sign in to comment.