https://github.com/erdc/stack
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/erdc/stack
- Owner: erdc
- Created: 2018-10-03T18:09:46.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-08-01T21:21:43.000Z (almost 2 years ago)
- Last Synced: 2024-08-01T23:31:38.168Z (almost 2 years ago)
- Language: Python
- Size: 17.1 MB
- Stars: 2
- Watchers: 10
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# HashStack <#>
[](https://gitter.im/hashdist/hashstack?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
HashStack is a collection of software profiles that builds on various architectures (Linux, Windows, Mac, clusters, ...) and allows optional reuse of system-wide packages (compilers, LAPACK, Python, ...).
To build these profiles, you need the [hit](https://github.com/hashdist/hashdist) tool from HashDist.
Read [hit's documentation](http://hashdist.readthedocs.org/) about how to use it.
## Usage
### Install Hashdist
Make sure the `hit` tool is in your path. For example if your `~/bin` directory is in `$PATH`, you can do:
```
cd repos
git clone https://github.com/hashdist/hashdist
cd ~/bin
ln -s ~/repos/hashdist/bin/hit .
```
or you can execute in the `hashdist` directory: ``export PATH=`pwd`/bin:$PATH`` (but then you need to put this commnand somewhere in your `.bashrc` or reexecute it by hand each time).
Now you can initialize HashDist with the following command:
```
hit init-home
```
### Use Hashstack
This will install one particular profile:
```
git clone https://github.com/hashdist/hashstack
cd hashstack
cp cloud.sagemath.yaml default.yaml
hit build
```
You can now for example run the IPython Notebook as follows:
```
./default/bin/ipython notebook
```