Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for activating environment and installing packages properly #226

Merged
merged 3 commits into from May 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 4 additions & 3 deletions create_eagle_env.sh 100644 → 100755
Expand Up @@ -27,11 +27,12 @@ echo "Creating $MY_CONDA_PREFIX"
module load conda
conda remove -y --prefix "$MY_CONDA_PREFIX" --all
conda create -y --prefix "$MY_CONDA_PREFIX" -c conda-forge "pyarrow>=3.0.0" python=3.7.8 "numpy>=1.20.0" "pandas>=1.0.0,!=1.0.4" dask distributed ruby
source deactivate
source activate "$MY_CONDA_PREFIX"
pip install --upgrade pip
which pip
if [ $DEV -eq 1 ]
then
pip install -e .
pip install --ignore-installed -e .
else
pip install .
pip install --ignore-installed .
fi
7 changes: 7 additions & 0 deletions docs/changelog/changelog_dev.rst
Expand Up @@ -75,3 +75,10 @@ Development Changelog
:tickets: 189

Adding measure arguments for reporting measures in the workflow generator.

.. change::
:tags: general, eagle
:pullreq: 226
:tickets:

Fix for create_eagle_env.sh not creating environment.