-
Notifications
You must be signed in to change notification settings - Fork 226
apt & conda: Update Instructions for Deps
#2629
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
Conversation
For Debian/Ubuntu, document the CUDA package that also ships the development headers.
Mainly used in the last days of our old regression tests.
apt: Document CUDA Dev Packageapt & conda: Update Instructions for Deps
| conda create -n warpx-dev -c conda-forge blaspp ccache cmake compilers git lapackpp openpmd-api python numpy scipy yt fftw matplotlib mamba ninja | ||
| conda activate warpx-dev | ||
| source activate warpx-dev |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changed because source activate does not pollute .bashrc: https://collegeville.github.io/CW20/WorkshopResources/WhitePapers/huebl-working-with-multiple-pkg-mgrs.pdf
| conda create -n warpx-dev -c conda-forge blaspp ccache cmake compilers git lapackpp openpmd-api=*=mpi_openmpi* python numpy scipy yt fftw=*=mpi_openmpi* matplotlib mamba ninja openmpi | ||
| conda activate warpx-dev | ||
| conda create -n warpx-dev -c conda-forge blaspp ccache cmake compilers git lapackpp "openpmd-api=*=mpi_openmpi*" python numpy scipy yt "fftw=*=mpi_openmpi*" matplotlib mamba ninja openmpi |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Quotes added because zsh on macOS otherwise had troubles escaping the wildcards. Compatible with Linux/Windows use.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for these updates! Looks good to me.
* `apt`: Document CUDA Dev Package For Debian/Ubuntu, document the CUDA package that also ships the development headers. * `conda`: Add `GNUmake` hints Mainly used in the last days of our old regression tests.
apt: Document CUDA Dev PackageFor Debian/Ubuntu, document the CUDA packages that also ship the development headers.
Inspired by a Gitter question of @mukapoor today.
conda: AddGNUmakehintsMainly used in the last days of our old regression tests. (see #2556)
Related to a macOS setup issue of @oshapoval today.