Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Alex Davis
35,050 PointsInstalling Packages
When I want to install a package like Bootstrap to my text editor(Atom), do I need to extract it from the 7zip or can I insert it all in as the folder itself?
1 Answer
Adam Beer
11,314 PointsBootstrap Documentation Introduction
and put this link into the <head> tags
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
or you can use the second option on this page.
But I prefer the npm (node package manager). First, you should download Node.js. Second, when you install Node.js then it asks from you to install the npm or not? You can choose. You can choose to install it with Node.js. After when installed the program, you open the terminal and use npm keyword. Like this, npm install bootstrap, or anything else.
Hope this help!