Skip to content

Commit

Permalink
Documented Conda installation development
Browse files Browse the repository at this point in the history
  • Loading branch information
razrotenberg committed Feb 19, 2024
1 parent f77625a commit 8fdd2b1
Showing 1 changed file with 38 additions and 1 deletion.
39 changes: 38 additions & 1 deletion docs/source/development/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ Now, run a container using the following command from the root directory of the
--name genv-server-1 \
-p 2221:22 \
-v $PWD:/root/genv \
genv:sshd
genv:sshd
.. TODO(raz): document how to use real GPUs
Expand Down Expand Up @@ -250,3 +250,40 @@ Publish to PyPI
.. note::

You might need to :code:`pip install twine`

Conda Installation
~~~~~~~~~~~~~~~~~~

~~~~~
Setup
~~~~~
Install `Conda-build <https://docs.conda.io/projects/conda-build/en/stable/index.html>`__:

.. code-block:: shell
conda install conda-build
Clone the Conda feedstock project `repository <https://github.com/conda-forge/genv-feedstock/>`__ and enter to its directory:

.. code-block:: shell
git clone https://github.com/conda-forge/genv-feedstock.git
cd genv-feedstock
~~~~~
Build
~~~~~
.. code-block:: shell
conda build .
.. note::

You can clean the build with :code:`conda build purge-all`

~~~~~~~
Install
~~~~~~~
.. code-block:: shell
conda install --use-local genv

0 comments on commit 8fdd2b1

Please sign in to comment.