-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from jose-d/main
remove multiprocessing from readme, introduce INSTALL.md to formalize what to do to install the code.
- Loading branch information
Showing
3 changed files
with
37 additions
and
94 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Manual Installation of EMRI_MC using Python venv | ||
|
||
## Runtime environment preparation | ||
|
||
Python - code was tested with #FIXME! python3.11. Make sure development package for given python version is installed too. Eg. at EL-like linux distros, `dnf install python3.11-devel`. | ||
|
||
### Ensure CUDA is present | ||
|
||
eg. at cluster environments, load CUDA toolkit. [^1] | ||
|
||
``` | ||
module load CUDA/12.2.0 | ||
``` | ||
|
||
### Create venv | ||
|
||
...and install recent `pip`.. | ||
|
||
``` | ||
python3.11 -m venv ~/.venvs/EMRI_MC | ||
pip install --upgrade pip | ||
``` | ||
|
||
### Activate venv and install code dependencies | ||
|
||
`source ~/.venvs/EMRI_MC/bin/activate` | ||
|
||
#WIP, so far exact list of dependencies in unclear. | ||
|
||
note: install step `Running setup.py install for cupy ...` can take long time. | ||
|
||
`pip install cupy emcee seaborn matplotlib pandas numpy emcee IPython ipykernel scipy h5py` | ||
|
||
# Notes | ||
|
||
[^1]: CUDA Toolkit - https://developer.nvidia.com/cuda-toolkit |
This file was deleted.
Oops, something went wrong.
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