QtCreator startup unresponsive problem solved under ubuntu16.04

One, the problem

Open the QT project on ubuntu, QtCreator can't start intermittently.


Two, the solution

Solution: Delete the QtProject folder in the system configuration directory

Operating procedures:

  1. Use the "find / -name QtProject" command to find the QtProject folder in the system
root@jq-virtual-machine:/# find / -name QtProject
  1. Enter the directory where the QtProject folder is located (depending on different systems, the location of this directory may be different), delete the folder
root@jq-virtual-machine:~/.config# rm -rf QtProject 

Feel free to delete it, and the folder will be created automatically next time QtCreator starts.

This method should be suitable for all systems, linux and windows, the key is to find the QtProject folder.

Guess you like

Origin blog.csdn.net/locahuang/article/details/110222446