Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 582 Bytes

conda_pack.md

File metadata and controls

28 lines (22 loc) · 582 Bytes

install vinautil

conda create -n my_env_test -c pylyzeng -c conda-forge -c bioconda vinautil -y

build anaconda package

conda create -n condabuild python=3 -y
conda activate condabuild
conda install conda-build anaconda-client -y
cd <source code dir>
anaconda login
conda build .
anaconda upload /path/to/conda-package.tar.bz2
conda create -n condabuild python=3 conda-build anaconda-client -c conda-forge -y
conda activate condabuild
cd <source code dir>
anaconda login
conda build .
anaconda upload /path/to/conda-package.tar.bz2