Giter Site home page Giter Site logo

conda-packaging's Introduction

Super simple example of building and installing own python package in conda

Prerequisites

  • Installed conda

Building and installing locally

conda create --name my-env
conda activate my-env
conda build recipe/  # built package will be placed in ~/anaconda3/conda-bld/<platform>/
conda install --use-local my-package

Example <platform>: linux-64

Testing a package in python interpreter

(my-env)$ python
>>> import my_package
>>> import numpy as np
>>> my_package.inc(np.array([1, 2]))
array([2, 3])

Testing a script in cli

(my-env)$ my-command
Fancy calculations ...
Random numbers: [1.89999105 1.60328891 1.51856524 1.13193159 1.73525164]

Extra

Converting a package for use on all platforms

conda convert --platform all ~/anaconda3/conda-bld/<platform>/<package_name>.tar.bz2 -o outputdir/

Uploading to Anaconda.org

Requires anaconda-client and account on Anaconda.org

anaconda login
anaconda upload ~/anaconda3/conda-bld/<platform>/<package_name>.tar.bz2

Installing a package locally with pip

pip install -e .

Commands

conda build purge-all  # Removing ALL builts in ~/anaconda3/conda-bld/

conda-packaging's People

Contributors

krystianfranus avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.