Src\cpu_info.jl

I was using v1.3.1.
Then I upgrade for v1.4.2 and reinstalled some packages. Now, I have both versions.
However, in v1.4.2 I cannot use some packages. E.g., when I type “using DifferentialEquations” I got the error

"could not open file “.julia\packages\VectorizationBase\FsdEK\src\cpu_info.jl”

What is the problem?

Have you tried rebuilding the packages?

Pkg.build()

2 Likes

src/cpu_info.jl is created when VectorizationBase is built.

EDIT:
VectorizationBase will now print a helpful error message, telling you to run using Pkg; Pkg.build() if the file is absent.

2 Likes