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 trialBruce Ives
4,689 PointsCannot Download sqlite tar.gz file into Treehouse Console
Using the Treehouse Console, I cannot download the SQLite tar.gz source file, zero bytes received.
Also tried with sudo
Here are the commands I tried, no bytes downloaded for any of these:
treehouse ~/src $ curl -O http://www.sqlite.org/2015/sql-autoconf-3018002.tar.gz treehouse ~/src $ curl -O https://www.sqlite.org/2015/sql-autoconf-3018002.tar.gz treehouse ~/src $ sudo curl -O http://www.sqlite.org/2015/sql-autoconf-3018002.tar.gz
1 Answer
Saleh '
24,986 PointsHello Bruce,
I don't know where you got this link but if you tried to open it in the browser it will not work,
run the same command but with this link : http://sqlite.org/2015/sqlite-autoconf-3081002.tar.gz
you can find the link in the sqlite download page.
In case you need the exact command here : sudo curl -O http://sqlite.org/2015/sqlite-autoconf-3081002.tar.gz
hopefully that will solve it for you.