Skip to content

Commit

Permalink
Update conda install commands after idaes-pse was added to conda-forge
Browse files Browse the repository at this point in the history
  • Loading branch information
lbianchi-lbl committed Nov 22, 2024
1 parent 5841433 commit 7423095
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ jobs:
install-target: ${{ matrix.pip-install-target }}
- name: Remove dependencies installable with pip but not with conda
# NOTE some dependencies that are installed by default with pip are not available through conda
# so they're not installed if IDAES is installed with `conda -c conda-forge -c IDAES-PSE idaes-pse`
# so they're not installed if IDAES is installed with `conda -c conda-forge idaes-pse`
# to ensure this scenario is handled properly, since we don't have (yet) the conda-build process integrated with the CI,
# we manually remove the "pip-but-not-conda" dependencies after installing with pip
# as an approximation of the enviroment that we'd get from `conda install`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ We recommend using Conda to manage your environment & modules.
conda activate my-idaes-env

# Install IDAES Conda package
conda install --yes -c IDAES-PSE -c conda-forge idaes-pse
conda install --yes -c conda-forge idaes-pse

.. note:: The command above will install the most recent stable (release) version of IDAES.
To install other versions of IDAES, including pre-release versions,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Set up & activate Conda new environment with IDAES-PSE
conda create --yes --name my-idaes-env -c conda-forge -c IDAES-PSE python=3.10 idaes-pse
conda create --yes --name my-idaes-env -c conda-forge python=3.10 idaes-pse
conda activate my-idaes-env

# Install IDAES Extensions
Expand Down

0 comments on commit 7423095

Please sign in to comment.