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 trialBrian Hudson
14,785 PointsProblem installing sql lite
When I type:
curl -o https://www.sqlite.org/2017/sqlite-autoconf-3190100.tar.gz
into the TeamTreehouse console I get the following error message:
curl: no URL specified!
Can't figure out what I'm doing wrong. The link beginning with "https:// " is directly copied from the SQL Lite download page, same as the instructor does in the video.
3 Answers
Stephen Josey
3,348 PointsI think your "-o" should be a capital O. Lowercase o is specifying an output file, not a remote-name.
Try: curl -O https://www.sqlite.org/2017/sqlite-autoconf-3190100.tar.gz
nfs
35,526 PointsThings are case-sensitive.
Brian Hudson
14,785 PointsThat worked. Thank you Stephen :)