New Linux install

Im attempting to create a Chia “node” which has the Blockchain, wallet and farmer.
I followed the guide, but after the ‘chia init’ im not clear on how to create the wallet. Looking at the help doesn’t clarify what to do next. I think I am suppose to get a set of keywords which identify the wallet address.

[chia@ChiaFarm ~]$ chia wallet -h
Usage: chia wallet [OPTIONS] COMMAND [ARGS]...

Options:
  -h, --help  Show this message and exit.

Commands:
  get_address       Get a wallet receive address
  get_transaction   Get a transaction
  get_transactions  Get all transactions
  send              Send chia to another wallet
  show              Show wallet information
Not able to start node:
[chia@ChiaFarm ~]$ chia start node
Daemon not started yet
Starting daemon
chia_full_node: started
[chia@ChiaFarm ~]$ Traceback (most recent call last):
  File "/home/chia/chia-blockchain/venv/bin/chia_full_node", line 33, in <module>
    sys.exit(load_entry_point('chia-blockchain', 'console_scripts', 'chia_full_node')())
  File "/home/chia/chia-blockchain/venv/bin/chia_full_node", line 25, in importlib_load_entry_point
    return next(matches).load()
  File "/home/chia/chia-blockchain/venv/lib/python3.7/site-packages/importlib_metadata/__init__.py", line 166, in load
    module = import_module(match.group('module'))
  File "/usr/local/lib/python3.7/importlib/__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 1006, in _gcd_import
  File "<frozen importlib._bootstrap>", line 983, in _find_and_load
  File "<frozen importlib._bootstrap>", line 967, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 677, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 728, in exec_module
  File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
  File "/home/chia/chia-blockchain/chia/server/start_full_node.py", line 8, in <module>
    from chia.full_node.full_node import FullNode
  File "/home/chia/chia-blockchain/chia/full_node/full_node.py", line 10, in <module>
    import aiosqlite
  File "/home/chia/chia-blockchain/venv/lib/python3.7/site-packages/aiosqlite/__init__.py", line 6, in <module>
    from sqlite3 import (  # pylint: disable=redefined-builtin
  File "/usr/local/lib/python3.7/sqlite3/__init__.py", line 23, in <module>
    from sqlite3.dbapi2 import *
  File "/usr/local/lib/python3.7/sqlite3/dbapi2.py", line 27, in <module>
    from _sqlite3 import *
ModuleNotFoundError: No module named '_sqlite3'

Trying to follow the Quick Start guide.
It talks about running a full-node, farmer, harvester and wallet all on the same box.
It does this by installing a GUI

sh install-gui.sh
cd chia-blockchain-gui
npm run electron &

However, im trying to start and run without the GUI since I don’t have one on the host. Looking over the CLI commands, I tried the following but got an error.

[chia@ChiaFarm ~]$ chia start node
Daemon not started yet
Starting daemon
chia_full_node: started
[chia@ChiaFarm ~]$ Traceback (most recent call last):
  File "/home/chia/chia-blockchain/venv/bin/chia_full_node", line 33, in <module>
    sys.exit(load_entry_point('chia-blockchain', 'console_scripts', 'chia_full_node')())
  File "/home/chia/chia-blockchain/venv/bin/chia_full_node", line 25, in importlib_load_entry_point
    return next(matches).load()
  File "/home/chia/chia-blockchain/venv/lib/python3.7/site-packages/importlib_metadata/__init__.py", line 166, in load
    module = import_module(match.group('module'))
  File "/usr/local/lib/python3.7/importlib/__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 1006, in _gcd_import
  File "<frozen importlib._bootstrap>", line 983, in _find_and_load
  File "<frozen importlib._bootstrap>", line 967, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 677, in _load_unlocked
  File "<frozen importlib._bootstrap_external>", line 728, in exec_module
  File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
  File "/home/chia/chia-blockchain/chia/server/start_full_node.py", line 8, in <module>
    from chia.full_node.full_node import FullNode
  File "/home/chia/chia-blockchain/chia/full_node/full_node.py", line 10, in <module>
    import aiosqlite
  File "/home/chia/chia-blockchain/venv/lib/python3.7/site-packages/aiosqlite/__init__.py", line 6, in <module>
    from sqlite3 import (  # pylint: disable=redefined-builtin
  File "/usr/local/lib/python3.7/sqlite3/__init__.py", line 23, in <module>
    from sqlite3.dbapi2 import *
  File "/usr/local/lib/python3.7/sqlite3/dbapi2.py", line 27, in <module>
    from _sqlite3 import *
ModuleNotFoundError: No module named '_sqlite3'