Can't source my Nvim Init file

I was trying to source my nvim; init.vim file. However, it threw me this error:

[coc.nvim] Error on execute python script: request error nvim_command - Vim(pyxfile):E319: No >“python3” provider found. Run “:checkhealth provider”

I ran the command it provided and it gave me this information:

health#provider#check
2 ========================================================================
3 ## Clipboard (optional)
4 - OK: Clipboard tool found: xclip
5
6 ## Python 2 provider (optional)
7 - WARNING: No Python executable found that can import neovim. Using the first available executable for diagnostics.
8 - ERROR: Python provider error:
9 - ADVICE:
10 - provider/pythonx: Could not load Python 2:
11 python2 not found in search path or not executable.
12 python2.7 not found in search path or not executable.
13 python2.6 not found in search path or not executable.
14 /usr/bin/python is Python 3.8 and cannot provide Python 2.
15 - INFO: Executable: Not found
16
17 ## Python 3 provider (optional)
18 - WARNING: No Python executable found that can import neovim. Using the first available executable for diagnostics.
19 - ERROR: Python provider error:
20 - ADVICE:
21 - provider/pythonx: Could not load Python 3:
22 /usr/bin/python3 does not have the “neovim” module. :help provider-python
23 python3.7 not found in search path or not executable.
24 python3.6 not found in search path or not executable.
25 python3.5 not found in search path or not executable.
26 python3.4 not found in search path or not executable.
27 python3.3 not found in search path or not executable.
28 /usr/bin/python does not have the “neovim” module. :help provider-python
29 - INFO: Executable: Not found
30
31 ## Ruby provider (optional)
32 - INFO: Ruby: ruby 2.7.2p137 (2020-10-01 revision 5445e04352) [x86_64-linux]
33 - WARNING: neovim-ruby-host not found.
34 - ADVICE:
35 - Run gem install neovim to ensure the neovim RubyGem is installed.
36 - Run gem environment to ensure the gem bin directory is in $PATH.
37 - If you are using rvm/rbenv/chruby, try “rehashing”.
38 - See :help g:ruby_host_prog for non-standard gem installations.
39
40 ## Node.js provider (optional)
41 - INFO: Node.js: v15.3.0
42 - INFO: Neovim node.js host: /usr/lib/node_modules/neovim/bin/cli.js
43 - OK: Latest “neovim” npm/yarn package is installed: 4.9.0

I had Python3 installed, that’s at least what it said when I ran python:

python
Python 3.8.6 (default, Sep 30 2020, 04:00:38)
[GCC 10.2.0] on linux
Type “help”, “copyright”, “credits” or “license” for more information.

What seems to be the issue? Are there any commands I can run to avoid this?