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

Adding recommendation to use mamba install to install tacs in docs #272

Merged
merged 1 commit into from
Nov 3, 2023
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ Kennedy, G. J., "Strategies for adaptive optimization with aggregation constrain
The easiest way to get started with TACS is through a conda install in an [Anaconda](https://www.anaconda.com/) environment. [Conda packages](https://anaconda.org/smdogroup/tacs) are
available for MacOS and Linux platforms. To get started, run the following in a conda terminal:

conda create -n TACS python=3.8
conda create -n TACS -c conda-forge python=3.8 mamba
conda activate TACS
conda install -c conda-forge -c smdogroup tacs
mamba install -c conda-forge -c smdogroup tacs

This will create an environment named "TACS" and install the `tacs` package and all
necessary dependencies. Once installed, the user will have access to all TACS C++ and python libraries.
Expand Down
4 changes: 2 additions & 2 deletions docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ To get started, run the following in a conda terminal:

::

conda create -n TACS python=3.8
conda create -n TACS -c conda-forge python=3.8 mamba
conda activate TACS
conda install -c conda-forge -c smdogroup tacs
mamba install -c conda-forge -c smdogroup tacs

This will create an environment named "TACS" and install the `tacs` package and all
necessary dependencies. Once installed, the user will have access to all
Expand Down