• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

README.rstD04-Apr-20251.1 KiB4023

Renode.ps1D04-Apr-202559 21

activate-win.shD04-Apr-2025153 42

activate.batD04-Apr-202561 22

activate.shD04-Apr-2025561 93

bld.batD04-Apr-20252.1 KiB4635

build.shD04-Apr-20254.2 KiB10271

deactivate-win.shD04-Apr-2025199 42

lower_mono_version.patchD04-Apr-2025158 87

meta.yamlD04-Apr-20251.6 KiB5952

README.rst

1Conda packages
2==============
3
4This directory contains scripts required to build `Conda <https://conda.io>`_ packages with Renode.
5
6The packages are available at https://anaconda.org/antmicro/renode.
7
8Building packages
9-----------------
10
11To build a package you need to have ``conda`` installed on your system.
12The easiest way to obtain it is to use the `Miniconda installer <https://docs.conda.io/en/latest/miniconda.html>`_.
13
14You also need to have the ``conda-build`` package installed.
15If you have already installed ``conda``, simply run::
16
17    conda install conda-build
18
19Building the package itself is easy.
20On Linux and macOS run::
21
22    conda build -c conda-forge path-to-renode/tools/packaging/conda
23
24On Windows, as it does not depend on Mono provided by ``conda-forge``, run::
25
26    conda build path/to/renode/tools/packaging/conda
27
28When the package is built, you can install it with::
29
30    conda install [-c conda-forge] --use-local renode
31
32Using prebuilt packages
33-----------------------
34
35To install packages from the ``antmicro`` channel, run::
36
37    conda install [-c conda-forge] -c antmicro renode
38
39The ``conda-forge`` channel is not required on Windows.
40