-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove stale files and update readme to be more accurate
- Loading branch information
1 parent
0a632e0
commit b3293ca
Showing
4 changed files
with
16 additions
and
59 deletions.
There are no files selected for viewing
This file contains 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
envname = 000-example-exercise | ||
|
||
# Create environment name based on the exercise name | ||
mamba create -n 000-example-exercise python=3.10 | ||
mamba activate 000-example-exercise | ||
# Install additional requirements | ||
mamba install numpy pandas matplotlib | ||
mamba create -n $envname python=3.10 | ||
if [[ "$CONDA_DEFAULT_ENV" == "$envname" ]]; then | ||
echo "Environment activated successfully for package installs" | ||
mamba install numpy pandas matplotlib | ||
else | ||
echo "Failed to activate environment for package installs. Dependencies not installed!" | ||
|
||
# Return to base environment | ||
mamba activate base | ||
mamba deactivate; mamba activate base | ||
|
||
# Download and extract data, etc. | ||
# Download and extract data, etc. |