Hello guys, I am really new to anaconda.
Was following the tutorials, but came to my mind on how can I launch a package for different OS.
It seems if I follow the tutorial it will deploy only for windows. And I got confused with the note on tutorial that is saying;
- Unix systems require a
build.sh
file, - Windows require a
bld.bat
- Both Unix and Windows systems require both a
build.sh
file and abld.bat
file. All packages require ameta.yaml
file.`
So if the tutorial example has a build.sh was not supposed to build to Unix instead of Windows?
What I need to do to build for both OS?
build.sh
echo "Building"
meta.yaml
package:
name: conda_gc_test
version: 1.2.1
build:
number: 3
requirements:
run:
- python
about:
summary: This is a simple meta-package
Tutorial: Working with packages — Anaconda documentation
Thanks