-
Notifications
You must be signed in to change notification settings - Fork 5
Conda building and installation
-
Install conda-build
conda install conda-build
-
Install the dependencies
conda install gdal numpy scipy matplotlib numba colorama tensorflow
-
Change to the directory containing
setup.py
-
Run the conda build process
conda build .
-
Once this finishes successfully, install kaska from the conda build directory. This is done by creating a declaring the build directory a conda channel, and installing kaska from it. The necessary directory can be found in the
conda build
output by looking for the lines# If you want to upload package(s) to anaconda.org later, type:
anaconda upload /path/to/conda/conda-bld/noarch/kaska-0.0.1-py_0.tar.bz2
In this case the command to install would be
conda install -c /path/to/conda/conda-bld kaska
Replace the placeholder path
/path/to/conda
with whatever is in the output of the cond build command. -
The
kaska
module should now be available within anaconda python.