modified: Altcoin-and-Forkcoin-Support.md
modified: Install-MMGen-on-Linux.md
parent
9a51b154f9
commit
4d89b37b67
2 changed files with 10 additions and 10 deletions
|
|
@ -37,7 +37,7 @@ In addition, ERC20 token creation and deployment are supported via the
|
|||
|
||||
From the MMGen repository root, type:
|
||||
|
||||
$ pip3 install --no-deps --user -r eth-requirements.txt
|
||||
$ python3 -m pip install --no-deps --user -r eth-requirements.txt
|
||||
|
||||
#### <a name='a_oe'>Install and run Geth or OpenEthereum</a>
|
||||
|
||||
|
|
|
|||
|
|
@ -14,22 +14,22 @@ For computers with no Internet connection, see **Note for offline machines** bel
|
|||
|
||||
##### Debian/Ubuntu:
|
||||
|
||||
$ sudo apt-get install git gcc libtool make autoconf libgmp-dev libssl-dev libpcre3-dev libmpfr-dev libmpc-dev python3-dev python3-pip
|
||||
$ sudo apt-get install curl git gcc libtool make autoconf libgmp-dev libssl-dev libpcre3-dev libmpfr-dev libmpc-dev python3-dev python3-pip
|
||||
|
||||
##### Arch Linux:
|
||||
|
||||
$ sudo pacman -S git gcc libtool make autoconf automake autogen pcre python-pip
|
||||
$ sudo pacman -S curl git gcc libtool make autoconf automake autogen pcre python-pip
|
||||
|
||||
#### Upgrade the build tools:
|
||||
|
||||
$ pip3 install --user --upgrade pip setuptools build wheel
|
||||
$ python3 -m pip install --user --upgrade pip setuptools build wheel
|
||||
|
||||
#### Install MMGen:
|
||||
|
||||
$ git clone https://github.com/mmgen/mmgen.git
|
||||
$ cd mmgen
|
||||
$ python3 -m build --no-isolation
|
||||
$ pip3 install --user --upgrade dist/*.whl # see 'Testing Note' below
|
||||
$ python3 -m pip install --user --upgrade dist/*.whl # see 'Testing Note' below
|
||||
$ cd ..
|
||||
|
||||
**Note:** Bear in mind that while the tip of `master` is always tested on
|
||||
|
|
@ -60,14 +60,14 @@ the following steps:
|
|||
> one using `apt-get download`. Otherwise, retrieve the packages manually
|
||||
> from `packages.debian.org` or `packages.ubuntu.com`.
|
||||
>
|
||||
> Download any required Python packages using `pip3 download`, or manually
|
||||
> from [pypi.org][pi] if your online and offline computers have different
|
||||
> architecture.
|
||||
> Download any required Python packages using `python3 -m pip download`, or
|
||||
> manually from [pypi.org][pi] if your online and offline computers have
|
||||
> different architecture.
|
||||
>
|
||||
> Transfer the downloaded files and cloned Git repositories to your offline
|
||||
> computer using a USB stick or other removable medium. Install the
|
||||
> Debian/Ubuntu packages with `sudo dpkg -i` and the Python packages with `pip3
|
||||
> install --user`.
|
||||
> Debian/Ubuntu packages with `sudo dpkg -i` and the Python packages with
|
||||
> `python3 -m pip install --user`.
|
||||
>
|
||||
> Clone the [secp256k1][ec] repository and copy it to `~/.cache` directory on
|
||||
> the offline machine (or copy it from your online machine’s `~/.cache`).
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue