Author Archives: Robins

Failed to install ISKernel Files,make sure you have appropriate privileges on this machine

Failed to install ISKernel Files,make sure you have appropriate privileges on this machine
When installing the software, especially the program in MSI format, this error occurred. I used the Administrator account and said That I did not have the authority, which made me very upset

Because the system patch was updated before the installation, the patch was almost unloaded to try!

Later thought of the computer installed 360 security guards and antivirus, with a try attitude, quit the two software, smooth installation!

360 is really harmful ah, the system access is too big, what plug in a foot, despise…

Forbidden (403) CSRF verification failed. Request aborted. – Django

How to solve the cross-domain problem of Django?
please see this article, very detailed: https://pypi.org/project/django-cors-headers/


The above is due to the CSRF problem, how to solve?
Two ways:
Top: comment out CsrfViewMiddleware as shown, but
is not recommended
Second: add the annotation @csrf_exempt
to the interface view
The above two methods do solve 403 errors.
However, according to a lot of information, the approach is that the front end first USES get request to specify the interface, and then the server generates get_token(request) to return to the front end. The front end carries csrftoken returned when requesting the interface, which will verify whether the cookie is consistent…
But they all tried in vain…
We can see the article: https://www.cnblogs.com/rgcLOVEyaya/p/RGC_LOVE_YAYA_692days_802_1.html

VMware Workstation failed to start VMware Authorization Service

This is because VMware Authorization Service in Windows system Service has not started.
press the win+r shortcut key, enter services. MSC , click ok
Service list to find VMware Authorization Service, and double-click

Modify the startup type to be automatic or manual. Click apply
and then click start. Wait for the startup to complete, then click ok to

I don’t know if it is because of the system access. I don’t know if it is because of the system access. I’m sorry, we can’t solve this for the moment.

ImportError: numpy.core.multiarray failed to import

ImportError: numpy.core.multiarray failed to import
: ImportError: numpi.core.multiarray failed to import 2, and imporplotlib fails to import 2. Now I want to talk about the real solution!!

: ImportError: numpy.core.multiarray failed to import
PIP install -u numpy
installation error

installation error

this error really took a long time, then reinstall matplotlib… The following
Ii. Reinstall Matplotlib
PIP install –upgrade matplotlib
It is much faster to use an image such as PIP install – I [mirror source link] -upgrade matplotlib
Summary of common mirror sources:

    mirror tsinghua university open source station https://mirrors.tuna.tsinghua.edu.cn/ netease open source image https://opsx.alibaba.com/mirror/ http://mirrors.163.com/ alibaba open source image stand
    Still report an error after that.

    See a lot of blogs that mention python – M for installation

      first type python-m PIP install-u PIP setuptools to upgrade, or directly jump to the next step
      input python-m PIP install matplotlib for automatic installation, waiting for the completion of the installation.

TSC: Fast TSC Calibration Failed solution

For workstations

tsc : Fast TSC calibration failed

smpboot : do_boot_cpu failed(-1) to wakeup CUP#N

Error reporting shall be handled as follows:
Press F11 to enter the BIOS mode (keys may be different for each machine), set the setting to set default, save the changes and restart, the machine can restart.

Compile “failed with error code 1 solution

1. PIP Install Mass
2, appear –record/TMP /pip-_6ys7mq9-record/install-record. TXT –single-version –compile” failed with error code 1 in…
3, this is due to the lack of virtual memory, my computer – advanced Settings – advanced – virtual memory, restart

How to Fix Spring Boot OTS parsing error: Failed to convert WOFF 2.0

In order to facilitate the configuration in the project, often use the properties file save configuration information, project started, need to open maven filtering with the properties of the attribute value replace placeholders in the configuration file, for example, I used in the project of c3p0.. the properties file database connection information, so that every time I need to change the database connection information, only need to modify the c3p0. The properties of the file, Using the ${} read value in mybatis config. XML (see figure below), using maven’s Resource plug-in to turn Filtering on, replaces ${} in the XML file with the contents of Properties at compile time.


When I was using Spring Boot, all the files related to my page were placed in the SRC /resource/ directory. After starting the project, the icon of the page (font-awesome is used) could not be used. I have checked the official document and explained as follows: means that turning on The Filtering function using Maven’s Resource plug-in destroys files with binary content.
According to the official document needs to modify the configuration as follows (this project is an example) :

<resources>
            <resource>
                <directory>${project.basedir}/src/main/resources</directory>
                <filtering>true</filtering>
                <excludes>
                    <exclude>static/fonts/**</exclude>
                </excludes>
            </resource>
            <resource>
                <directory>${project.basedir}/src/main/resources</directory>
                <filtering>false</filtering>
                <includes>
                    <include>static/fonts/**</include>
                </includes>
            </resource>
        </resources>

Static directory part content:


After the project is compiled, the files will not be corrupted.