Uninstalling is a manual process you need to execute in the Terminal program of Apple. This guide describes these steps to remove the driver. The first command helps you finding the technical name of the driver, second you must unload the driver from the kernel, and the last step finally removes the driver from your system.
for OS X 10.9 (or newer): cd /Library/Extensions
for OS X 10.8 (or older): cd /System/Library/Extensions
Grep the name from the command line:
ls | grep 2303
sudo kextunload ./<name>.kext
sudo rm -rf <name>.kext
for OS X 10.9 (or newer): cd /Library/Extensions
for OS X 10.8 (or older): cd /System/Library/Extensions
Grep the name from the command line:
ls | grep ch341
sudo kextunload ./<name>.kext
sudo rm -rf <name>.kext