https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Raw File
Tip revision: 7ceb5993d263049feb8a5e214a11a6cd7f6d8190 authored by Paul La Plante on 10 August 2022, 05:35:54 UTC
Add basics for reading bitshuffle data
Tip revision: 7ceb599
_activate_current_env.sh
# This script should never be called directly, only sourced:

#     source _activate_current_env.sh

# Initialize the current shell
eval "$(`which micromamba` shell hook --shell=bash)"

# For robustness, try all possible activate commands.
conda activate "${ENV_NAME}" 2>/dev/null \
  || mamba activate "${ENV_NAME}" 2>/dev/null \
  || micromamba activate "${ENV_NAME}"
back to top