I am trying to install the mymonero-simplewallet mnemonic conversion utility from github on my computer, which runs galliumos.
https://github.com/moneroexamples/mymonero-simplewalletfollowing the instructions
# download the source code
git clone https://github.com/moneroexamples/mymonero-simplewallet.git
# enter the downloaded sourced code folder
cd mymonero-simplewallet
# create the makefile
cmake .
# compile
make
I got git: command not found, so I installed git. That was easy enough, apt-get install git did the trick.
I downloaded the source code, and when I entered cmake
I got the same error cmake: command not found
but I am not having good luck with cmake:
$ sudo apt-get install cmake
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
cmake-data gcc
Suggested packages:
codeblocks eclipse ninja-build gcc-multilib autoconf automake libtool flex
bison gdb gcc-doc
The following NEW packages will be installed:
cmake cmake-data gcc
0 upgraded, 3 newly installed, 0 to remove and 32 not upgraded.
Need to get 3,313 kB of archives.
After this operation, 16.9 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://us.archive.ubuntu.com/ubuntu/ vivid/main cmake-data all 3.0.2-1ubuntu2 [923 kB]
Get:2 http://us.archive.ubuntu.com/ubuntu/ vivid/main cmake amd64 3.0.2-1ubuntu2 [2,385 kB]
Get:3 http://us.archive.ubuntu.com/ubuntu/ vivid/main gcc amd64 4:4.9.2-2ubuntu2 [5,232 B]
Fetched 3,313 kB in 4s (738 kB/s)
Selecting previously unselected package cmake-data.
(Reading database ... 155678 files and directories currently installed.)
Preparing to unpack .../cmake-data_3.0.2-1ubuntu2_all.deb ...
Unpacking cmake-data (3.0.2-1ubuntu2) ...
Selecting previously unselected package cmake.
Preparing to unpack .../cmake_3.0.2-1ubuntu2_amd64.deb ...
Unpacking cmake (3.0.2-1ubuntu2) ...
Selecting previously unselected package gcc.
Preparing to unpack .../gcc_4%3a4.9.2-2ubuntu2_amd64.deb ...
Unpacking gcc (4:4.9.2-2ubuntu2) ...
Processing triggers for man-db (2.7.0.2-5) ...
Setting up cmake-data (3.0.2-1ubuntu2) ...
Setting up cmake (3.0.2-1ubuntu2) ...
Setting up gcc (4:4.9.2-2ubuntu2) ...
kell@computer:~/mymonero-simplewallet$ cmake .
-- The C compiler identification is GNU 4.9.2
-- The CXX compiler identification is unknown
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
CMake Error at CMakeLists.txt:2 (project):
No CMAKE_CXX_COMPILER could be found.
Tell CMake where to find the compiler by setting either the environment
variable "CXX" or the CMake cache entry CMAKE_CXX_COMPILER to the full path
to the compiler, or to the compiler name if it is in the PATH.
-- Configuring incomplete, errors occurred!
See also "/home/kell/mymonero-simplewallet/CMakeFiles/CMakeOutput.log".
See also "/home/kell/mymonero-simplewallet/CMakeFiles/CMakeError.log".
I was asking for help on the galliumos irc channel. Someone suggested that I should use the instructions in this link
https://github.com/moneroexamples/compile-monero-09-on-ubuntuto help me get the missing dependencies