About transferring Anaconda directory - registry, system variables, Qt error reporting

2019/01/17

环境:Anconda,Win10 x64

Today when I transferred the Anaconda directory under Win10, I encountered some problems and the process of checking the information was a headache. Here is a summary.

In addition to simply moving files, the directory in the configuration information must also be changed, so that python can be used smoothly, including linkage with cmd, pycharm, etc.

There are two main parts of Python's configuration information: registry information and system variable PATH. Anaconda's directory is the python directory.

In this way, the python configuration has been successfully transferred. You might as well test it; however, Anaconda's Spyder reported a strange error:

Application failed to start because it could not find or load the QT platform plugin “windows”

Reference https://stackoverflow.com/questions/21268558/application-failed-to-start-because-it-could-not-find-or-load-the -qt-platform-pl , the reason is that there is no Qt library in the running environment, and passers-by’s approach is to manually introduce the Qt library; of course, we may also need to change the Qt settings.

  • Open the text ...\Anaconda\qt.conf and modify the path.

Guess you like

Origin blog.csdn.net/hizcard/article/details/86533081