Hello,
One issue I’m having is that I have followed the below instructions:
# Installing and Running a Node
1. We need the following packages and tools on our Linux system to download the source code and build it:
- the version control system ``git``,
- the ``gcc`` C-compiler,
- C++ support for ``gcc``,
- developer libraries for the the arbitrary precision library ``gmp``,
- developer libraries for the compression library ``zlib``,
- developer libraries for ``systemd``,
- developer libraries for ``ncurses``,
- ``ncurses`` compatibility libraries,
- the Haskell build tool ``cabal``,
- the GHC Haskell compiler.
If we are using an AWS instance running Amazon Linux AMI 2 (see the [AWS walk-through](AWS.md) for how to get such an instance up and running)
or another CentOS/RHEL based system,
we can install these dependencies as follows:
sudo yum update -y
sudo yum install git gcc gcc-c++ gmp-devel make tar wget zlib-devel -y
This file has been truncated. show original
…, but I’m getting an error when inputting one of the last couple of lines.
cp -p ~/Downloads/cardano-node/dist-newstyle/build/x86_64-linux/ghc-8.6.5/cardano-node-1.11.0/x/cardano-node/build/cardano-node/cardano-node ~/.local/bin/
cp -p ~/Downloads/cardano-node/dist-newstyle/build/x86_64-linux/ghc-8.6.5/cardano-cli-1.11.0/x/cardano-cli/build/cardano-cli/cardano-cli ~/.local/bin/
After some digging it seems my Downloads/cardano-node/dist-newstyle subfolder doesn’t include a /build sub-folder for some reason, so it then can’t create a PATH in .local/bin
I see within .local/bin that cardano-node is there but not cardano-cli.
I was wondering if someone could be kind enough to help me with this?
Thanks,
Travers.