How can I resolve this Anaconda launch problem?

When I launch anaconda in Ubuntu using 'anaconda-navigator' the screen has a glitchy window:

The Glitch when Opening Anaconda

Anaconda launches after about 5 min. I have tried reinstalling multiple times but the problem persists. The glitchy window remains overtop other application windows as well.

System Version
Ubuntu Desktop 20.04.3 LTS
Anaconda Anaconda3-2021.05

Solution 1:

Experience has shown this to be an issue with the SSL Verification feature of the application. There are a few things you can do here:

  1. Ensure Anaconda is closed
  2. Open Terminal (if it's not already open)
  3. Check the settings:
    conda config --show
    
  4. Disable the SSL Verification:
    conda config --set ssl_verify false
    
  5. Launch Anaconda ... and let it take its time
  6. Go to "Preferences" and ensure "Enable SSL Verification" is disabled
  7. Press "Apply"

This should result in a much faster loading Anaconda installation. The glitchy window will probably still exist, but will disappear after a split second.