I'm doing a Pluralsight course(https://www.pluralsight.com/courses/asp-dot-net-core-understanding) and in the first example the teacher tells to install the package "startboostrap-sb-admin-2", that's here: https://github.com/IronSummitMedia/startbootstrap-sb-admin-2.git
I'm trying to install it in Visual Studio 2015 like he says, but I get this error in the console:
PATH=.\node_modules\.bin;C:\Program Files (x86)\Microsoft Visual Studio 14.0\Web\External;%PATH%;C:\Program Files (x86)\Microsoft Visual Studio 14.0\Web\External\git
"C:\Program Files (x86)\Microsoft Visual Studio 14.0\Web\External\Bower.cmd" install startbootstrap-sb-admin-2#1.0.8 --force-latest --save
bower startbootstrap-sb-admin-2#1.0.8 not-cached https://github.com/IronSummitMedia/startbootstrap-sb-admin-2.git#1.0.8
bower startbootstrap-sb-admin-2#1.0.8 resolve https://github.com/IronSummitMedia/startbootstrap-sb-admin-2.git#1.0.8
bower startbootstrap-sb-admin-2#1.0.8 ENORESTARGET No tag found that was able to satisfy 1.0.8
Additional error details:
No versions found in https://github.com/IronSummitMedia/startbootstrap-sb-admin-2.git
I never worked with Bower before, so I'm a litte lost here.
Any ideas?
Thanks.
I installed bower yesterday and the step is as follow:
Download and install Node.js
Install Bower (npm install -g bower)
bower install vss-web-extension-sdk
Good luck for your install.
So I looked up in the repository and saw this issue: https://github.com/ironsummitmedia/startbootstrap-sb-admin-2/issues/1
Apparently Bower support is broken for this repo, that's why I'm getting this error.
The solution for now is to add this to my bower.json:
"dependencies": { "startbootstrap-sb-admin-2": "https://github.com/BlackrockDigital/startbootstrap-sb-admin-2.git#master" }
Related
I need to install Qt5 with MSVC compiler (for Windows) using CircleCI.
choco installs only MinGW compiler which is not acceptable for my case. Also there are some options (e.g. choco install qt-sdk-windows-x64-msvc2012) but they look to be outdated. The file choco tries to download does not exist any more.
When I try to download the Qt offline installer and to run it from cmd using --script option it nevertheless requires the UI environment to display the window.
Could you please advise whether there is any option to install the Visual Studio compiler for Qt on Windows?
I have created a installer using install script(Without MSI) and it works but
after installing Installscript (without MSI) setup.exe file I could not uninstall the installed project and it's not inside the Add-remove program so how can I uninstall the setup
can anyone please suggest me how can I uninstall the setup file?
Thanks in advance.
What commands must I follow on the command line to downgrade. I ran uninstall and reinstalled as well as nom i -S firebase#... but now when I reload the app it just crashes.
If you have to install an older version of a package, just specify it
npm install <package>#<version>
For example: npm install firebase#9.2.0
You can also add the --save flag to that command to add it to your package.json dependencies, or --save --save-exact flags if you want that exact version specified in your package.json dependencies.
The install command is documented here: https://docs.npmjs.com/cli/install
If you're not sure what versions of a package are available, you can use:
npm view firebase versions
And npm view can be used for viewing other things about a package too.
https://docs.npmjs.com/cli/view
don't forget to remove .lock file first to rebuilt the depedency
can u give the error messege for us....
i'm executing sudo npm install --global foundation-cli
Getting an error when creating foundation zurb project
You have to downgrade to NodeJS 10, the issue is known and happens on newer NodeJS versions in the natives package. Or try to rebuild your packages with npm rebuild --force
Quick Google and GitHub searches lead to the same solution.
I'm trying to connect my Electron project with SQLite3 but I'm encountering an error that say's
An unhandled error occurred inside electron-rebuild
Building the projects in this solution one at a time. To enable parallel build, please add the "/m" switch.
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V140\Platforms\x64\PlatformToolsets\v140\Toolset.targets(36,5): error MSB8036: The Windows SDK version 8.1 was not found. Install the required version of Windows SDK or change the SDK version in the project property pages or by right-clicking the solution and selecting "Retarget solution". [E:\Personal_Projects\myquiz\node_modules\sqlite3\build\deps\action_before_build.vcxproj]
I've followed these steps:
1. install electron-rebuild (npm install --save-dev electron-rebuild)
2. install sqlite3 using npm (npm install --save sqlite3)
I've already found the solution just download and install the SDK 8.1 version.