Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
1 result

readme.md

Blame
  • Building and uploading the pyteuf conda package

    To build the package, from the current directory, run:

    conda build -c anaconda -c conda-forge -c skmad -c ltfatpy .

    Note: In the previous command, we specify the channel conda-forge, skmad and ltfatpy because the pyteuf package requires packages that are not available in Anaconda but are provided by the channel conda-forge, skmad and ltfatpy. We also specify anaconda as the first channel, because we want to preferentially use packages from Anaconda for packages that are both available in Anaconda and conda-forge.

    Once built, a package can be uploaded to anaconda.org using the Anaconda client:

    anaconda upload --user skmad /miniconda/conda-bld/noarch/pyteuf*

    Note: in the previous command the path of the uploaded file should be adapted according to the installation directory of your conda distribution.