Skip to content

Commit

Permalink
Enable support for Apple silicon chip
Browse files Browse the repository at this point in the history
  • Loading branch information
jpfleischer committed Oct 18, 2024
1 parent 1551a30 commit a9331d5
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
11 changes: 10 additions & 1 deletion .docker/setup_config.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
set -e
echo "About to start conda update, this may take some time..."
source setup/setup_conda.sh Linux-x86_64
ARCH=$(uname -m)
if [ "$ARCH" == "x86_64" ]; then
source setup/setup_conda.sh Linux-x86_64
elif [ "$ARCH" == "aarch64" ]; then
source setup/setup_conda.sh Linux-aarch64
else
echo "Unsupported architecture: $ARCH"
exit 1
fi

# now install the emission environment
source setup/setup.sh

Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ preprocessing results ensures reasonable performance.

## Installation: ##
----------
- For **deployers** (i.e. if you want to primarily *use* the system as opposed to modify/develop it, the [docker installation](https://github.com/e-mission/e-mission-docker) is probably the easiest way to get started.
- For **deployers** i.e. if you want to primarily *use* the system as opposed to modify/develop it,

```bash
docker build -t e-mission-server .
```

- For **builders** (i.e. if you want to write new scripts or modify existing scripts) the [manual install](https://github.com/e-mission/e-mission-docs/blob/master/docs/install/manual_install.md) will make it easier to edit files directly on your local filesystem. Make sure to use a POSIX-compliant CLI; you may want to look into [gitbash](https://openhatch.org/missions/windows-setup/install-git-bash) or similar on Windows.

## Additional Documentation: ##
Expand Down

0 comments on commit a9331d5

Please sign in to comment.