Created
October 4, 2012 21:27
-
-
Save defnull/3836574 to your computer and use it in GitHub Desktop.
Easiest way to download bottle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget http://bottlepy.org/bottle.py | |
curl http://bottlepy.org/bottle.py > bottle.py | |
pip install bottle | |
easy_install bottle | |
python -c 'import urllib; open("bottle.py", "wb").write(urllib.urlopen("http://bottlepy.org/bottle.py").read())' | |
python3 -c 'import urllib.request; open("bottle.py", "wb").write(urllib.request.urlopen("http://bottlepy.org/bottle.py").read())' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment