偏爱动态语言,用动态语言工作,你可以在编辑器(IDE)中coding,也可以顺便开一个console,交互执行代码,这种感觉是写Java/C/C++时体会不到的。
最近开始关注Python,作了不短的ruby/rails工作后,不想在继续作井底之蛙,想要看看外面的世界。
在Ubuntu 7.10 Gutsy下面装Django非常方便
sudo apt-get install python-django
安装数据库
# MySQL apt-get install mysql-server python-mysqldb # PostgreSQL apt-get install postgresql python-psycopg2
打开console,启动一个python交互环境:
~$ python Python 2.5.1 (r251:54863, Oct 5 2007, 13:36:32) [GCC 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import django >>> django.VERSION (0, 96, None) >>> import psycopg2 >>> psycopg2.apilevel '2.0'
《The Django Book》刚刚release,和Ubuntu自带Django同步。
Python参考资料:《深入 Python :Dive Into Python 中文版》
Here we go~