Skip to content

Commit

Permalink
Install requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
brianreicher committed Dec 14, 2023
1 parent b024882 commit 253e01b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,36 +32,42 @@ Automated segmentation for large-scale biological datasets.
* Free software: Apache 2.0 License

### Installation
A complete install can be run with:
```bash
bash install.sh
```

Or install-by-install as follows:

Install Rust and Cargo via RustUp:
1. Install Rust and Cargo via RustUp:

```bash
curl https://sh.rustup.rs -sSf | sh
```


Install MongoDB:
2. Install MongoDB:

```bash
curl -fsSL https://pgp.mongodb.com/server-6.0.asc | sudo gpg -o /usr/share/keyrings/mongodb-server-6.0.gpg --dearmor
```


And initialize a MongoDB server in a screen on your machine:
3. And initialize a MongoDB server in a screen on your machine:

```bash
screen
mongod
```

Install ``graph_tool``
4. Install ``graph_tool``

```bash
conda install -c conda-forge -c ostrokach-forge -c pkgw-forge graph-tool
```


Install `autoseg`:
5. Install `autoseg`:

```bash
pip install git+https://github.com/brianreicher/autoseg.git
Expand Down
3 changes: 3 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ conda install -c conda-forge -c ostrokach-forge -c pkgw-forge graph-tool
# initialize a MongoDB server
screen
mongod

# install autoseg
pip install git+https://github.com/brianreicher/autoseg.git

0 comments on commit 253e01b

Please sign in to comment.