This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # https://registry.opendata.aws/nwm-archive/ | |
| # This shell script downloads data from the NWM retrospective dataset. | |
| # Files are accessed with their timestamps in the format YYYYMMDDHH00 | |
| # Example: channel routing data at 3pm Jan 1 2010: | |
| # "201001011500.CHRTOUT_DOMAIN1.comp" | |
| # Example: channel routing data from Sep 2019: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: tf-metal-env | |
| channels: | |
| - apple | |
| - conda-forge | |
| dependencies: | |
| - python | |
| - pip | |
| - tensorflow-deps | |
| - ipykernel |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # download latest micromamba and install | |
| # https://mamba.readthedocs.io/en/latest/installation.html | |
| # to install arm64 micromamba binary do | |
| mkdir -p ~/.local/bin | |
| curl -Ls https://micro.mamba.pm/api/micromamba/osx-arm64/latest | | |
| tar -xvj -C ~/.local/bin/ --strip-components=1 bin/micromamba |