-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mostly docs; fix install script location
- Loading branch information
1 parent
2e55f67
commit 1146d66
Showing
9 changed files
with
121 additions
and
1,141 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
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
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
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 @@ | ||
TODO |
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/sh | ||
|
||
curl -Ls https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -xvj bin/micromamba | ||
export MAMBA_ROOT_PREFIX=$(pwd) # optional, defaults to ~/micromamba | ||
|
||
eval "$(./bin/micromamba shell hook -s posix)" | ||
micromamba activate | ||
micromamba create -n _psiflow_env -y python=3.10 pip ndcctools=7.11.1 -c conda-forge | ||
micromamba activate _psiflow_env | ||
pip install git+https://github.com/molmod/psiflow | ||
|
||
# create activate.sh | ||
echo 'ORIGDIR=$PWD' >>activate.sh # prevent variable substitution | ||
echo "cd $(pwd)" >>activate.sh | ||
echo "export MAMBA_ROOT_PREFIX=$(pwd)" >>activate.sh | ||
echo 'eval "$(./bin/micromamba shell hook -s posix)"' >>activate.sh | ||
echo "micromamba activate _psiflow_env" >>activate.sh | ||
echo 'cd $ORIGDIR' >>activate.sh # prevent variable substitution |
Large diffs are not rendered by default.
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
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