Files
purple-electrumwallet/contrib/osx/README_macos.md
T

33 lines
563 B
Markdown
Raw Normal View History

# Running Electrum from source on macOS (development version)
## Prerequisites
- [brew](https://brew.sh/)
- python3
- git
## Main steps
### 1. Check out the code from GitHub:
```
$ git clone https://github.com/spesmilo/electrum.git
$ cd electrum
$ git submodule update --init
```
2022-04-08 20:22:50 +02:00
Run install (this should install most dependencies):
```
2024-09-05 16:20:01 +00:00
$ python3 -m pip install --user -e ".[gui,crypto]"
```
### 2. Install libsecp256k1
```
$ brew install autoconf automake libtool coreutils
$ contrib/make_libsecp256k1.sh
```
2024-09-05 16:20:01 +00:00
### 3. Run electrum:
```
$ ./run_electrum
```