-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update instruction on installing the node from source #34
Conversation
docs/getting-started/install.md
Outdated
conflict: pkg-config package libsodium-any, not found in the pkg-config | ||
database |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
conflict: pkg-config package libsodium-any, not found in the pkg-config | |
database | |
conflict: pkg-config package libsodium-any, not found in the pkg-config database |
docs/getting-started/install.md
Outdated
``` | ||
yum update -y && \ | ||
yum install git diffutils gcc gcc-c++ tmux gmp-devel make tar xz wget zlib-devel libtool autoconf -y && \ | ||
mkdir -p /root/src/ && cd /root/src && \ | ||
curl -O https://distfiles.ariadne.space/pkgconf/pkgconf-2.0.3.tar.xz && \ | ||
tar -xvf pkgconf-2.0.3.tar.xz && \ | ||
cd pkgconf-2.0.3 && \ | ||
./configure && make && make install && \ | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks slightly better when indented
``` | |
yum update -y && \ | |
yum install git diffutils gcc gcc-c++ tmux gmp-devel make tar xz wget zlib-devel libtool autoconf -y && \ | |
mkdir -p /root/src/ && cd /root/src && \ | |
curl -O https://distfiles.ariadne.space/pkgconf/pkgconf-2.0.3.tar.xz && \ | |
tar -xvf pkgconf-2.0.3.tar.xz && \ | |
cd pkgconf-2.0.3 && \ | |
./configure && make && make install && \ | |
``` | |
``` | |
yum update -y && \ | |
yum install git diffutils gcc gcc-c++ tmux gmp-devel make tar xz wget zlib-devel libtool autoconf -y && \ | |
mkdir -p /root/src/ && cd /root/src && \ | |
curl -O https://distfiles.ariadne.space/pkgconf/pkgconf-2.0.3.tar.xz && \ | |
tar -xvf pkgconf-2.0.3.tar.xz && \ | |
cd pkgconf-2.0.3 && \ | |
./configure && make && make install && \ | |
``` |
docs/getting-started/install.md
Outdated
|
||
The possible solutions to this problem are: | ||
|
||
- to upgrade `pkgconf` to version 2: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- to upgrade `pkgconf` to version 2: | |
- to upgrade `pkgconf` to version 2 by building it from source: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Few cosmetic remarks. Thanks!
c9ac5ec
to
749f03b
Compare
Thanks, remarks/suggestions applied and PR merged. |
Update instruction to include information about possible issue (and solutions) with
pkg-config
that user may face during installation.More here: IntersectMBO/cardano-node#5561