package your commonly used funcs using conda

my dev in conda: https://anaconda.org/longw010/longwdev

After the code is frozen, we can start with setting up a conda package and register it. Assume you already registered an account at anaconda,

The minimal conda package requires:

  • the package name and version number

  • set up a meta.yml or (build.sh&bld.bat)

  • use conda build to package it

  • login to anaconda and upload it to the repo

The options to extend includes:

  • make the package work in all systems (osx-64 linux-32 linux-64 win-32 win-64)or multiple python version

Steps for multiple platforms support:

Issues I met:

References:

  • conda-build:

Last updated