Created
December 1, 2022 20:46
-
-
Save noahgift/e64adc4f2d4852947bfc94b2ebaf2dee to your computer and use it in GitHub Desktop.
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/bash | |
set -e | |
# This script installs a pip package in compute instance azureml_py38 environment. | |
sudo -u azureuser -i <<'EOF' | |
PACKAGE=numpy | |
ENVIRONMENT=azureml_py38 | |
conda activate "$ENVIRONMENT" | |
pip install "$PACKAGE" | |
conda deactivate | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment