-
-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
4 additions
and
3 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 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,11 +1,11 @@ | ||
#!/bin/bash | ||
|
||
# CONDA | ||
conda create --yes -n astropy-tutorials python=$PYTHON_VERSION astropy=$ASTROPY_VERSION | ||
conda create --yes -n astropy-tutorials python=$PYTHON_VERSION numpy=$NUMPY_VERSION astropy=$ASTROPY_VERSION | ||
source activate astropy-tutorials | ||
|
||
# TUTORIALS/OPTIONAL DEPENDENCIES | ||
conda install --yes python=$PYTHON_VERSION ipython ipython-notebook runipy matplotlib scipy h5py pyyaml beautifulsoup4 | ||
conda install --yes python=$PYTHON_VERSION numpy=$NUMPY_VERSION ipython ipython-notebook runipy matplotlib scipy h5py pyyaml beautifulsoup4 | ||
|
||
# if future tutorials need things from the astropy channel, they can use this | ||
#conda install -c astropy-ci-extras python=$PYTHON_VERSION <deps here> | ||
#conda install -c astropy-ci-extras python=$PYTHON_VERSION numpy=$NUMPY_VERSION <deps here> |