It took me a while to figure this out after searching via google and the forum. I figured I will write a tutorial on how to install this driver. The information I have put together is from 2 different threads on this forum. I will provide those links as they do go more into detail on the why. I have simply just taken the information from each and put it in order.
https://discuss.getsol.us/d/113-rtl8821ce-install-advice
https://discuss.getsol.us/d/1222-how-to-install-github-sources-requiring-dkms-for-missing-devices-drivers
You will need to make sure you install the tools to use make
sudo eopkg install it -c system.devel
Install git
sudo eopkg install git
Then install the current linux headers sudo eopkg install linux-current-headers
Now you will clone the rtl8821ce drive from github
git clone https://github.com/tomaspinho/rtl8821ce.git
Change directory into the file you just cloned
cd rtl8821ce
Once you are in the file directory run /lib/modules/<linux version>/build
you will need to replace <linux version> with your linux version. To find this you
simply run uname -r
in a separate terminal window input exactly what that command returns
An example from mine is /lib/modules/5.2.9-125.current/build
After you run that you will next run make
you do not need to run this as sudo. It will take a while to complete.
Then run sudo make install
Followed by sudo modprobe -a 8821ce
That should be all, I have done this several times on my system because I keep distro hopping and coming back. Check your network status and you should see wireless below ethernet, if not restart the computer.