Skip to content

Instantly share code, notes, and snippets.

@oldarmyc
Created March 6, 2019 21:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oldarmyc/e36e8afab95edceb33bc9f0f585285e8 to your computer and use it in GitHub Desktop.
Save oldarmyc/e36e8afab95edceb33bc9f0f585285e8 to your computer and use it in GitHub Desktop.
Build instructions for ibm_db

To build the ibm_db package you would need to execute the following steps.

conda skeleton pypi ibm_db

Once complete a directory labeled ibm_db will be created, and inside that directory you will have a meta.yaml file.

If you would like to build the package for a specific python version you can edit the meta.yaml file and specify the version you would like to build it for. For example to build the package for python 3.6, open the meta.yaml file and edit the version of python to be 3.6 as seen in the example below.

requirements:
  host:
    - pip
    - python=3.6
  run:
    - python=3.6

When you are ready you can execute the build command.

conda build ibm_db

Once complete you will be give the path of the package in the output, and feel free to upload that into AE5 into your channel of choice.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment