Skip to content

Conda Stuff


Conda Package Management

  • installing packages by conda install <PKGNAME>

Conda Packaging

create a meta.yaml with all neccessary information. A skeleton of this file looks like:

package:
  name:
  version:

source:
  git_rev:
  git_url:

requirements:
  host:
    - python
    - setuptools

  run:
    - python

test:
  imports:
    -

about:
  home:
  license:
  license_file:

you can create also the neccessary file by running the command:

conda skeleton pypi <PROJECTNAME>