NUget Package Manager Change Catalog

I am trying to install Entity Framework using NUget package manager using the following command

Install-Package EntityFramework -Pre

but it gives me the following error

The term “Install-Package” is not recognized as the name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if the path was included, make sure the path is correct and try again.

I noticed that on the console I get

PS C:\Users\tz>  Install-Package EntityFramework -Pre

I think it should be

PM  Install-Package EntityFramework -Pre

If i'm right how to change this

+3
source share
2 answers

This is a rare console initialization issue ( Issue # 1953 in the NuGet tracker), which should be fixed with the next version of Nuget (1.8).

VS .

+1

NuGet 1.7.

PS C:\Users\tz>

.

0

All Articles