Skip to content

Latest commit

 

History

History
36 lines (15 loc) · 974 Bytes

File metadata and controls

36 lines (15 loc) · 974 Bytes

Custom Conda Recipes

Here are custom builds of dependency packages that we needed to make ourselves and upload to anaconda.org, either because they weren't there, or they weren't packaged the way we dependencies need to get resolved.

To install these packages users will need to add: -c fastai/label/test to their "conda install" command.

torchvision

This one is built to depend on pytorch-nightly from the pytorch channel

conda build torchvision -c pytorch --python=3.6

anaconda upload ~/anaconda3/conda-bld/noarch/torchvision-0.2.1-pyhe7f20fa_0.tar.bz2 -u fastai --label test

then need to ask users to install torchvision=0.2.1=pyhe7f20fa_0

dataclasses

conda build dataclasses

fastprogress

conda build fastprogress

to test installs cleanup first

conda uninstall fastai pytorch-nightly pytorch torchvision dataclasses fastprogress
pip   uninstall fastai pytorch-nightly pytorch torchvision dataclasses fastprogress