Dive Into Python 学习笔记(一)
Python的安装一 python在windows下的安装
1.从 http://www.python.org/ftp/python/选择最新的
?
2.双击安装程序
?
?上面的print?? "hello? world" 是我自己敲的代码,来测试python代码是否能够正常运行.
?
?在命令行下运行
?start-->运行--python,则出现如下界面:
?
?
二?python在Linux下的安装1. 使用wget命令从http://www.python.org/ftp/python/2.5.1/Python-2.5.1.tgz?下载Python-2.5.1.tgz压缩包.
????
$ wget -r -np -nd http://www.python.org/ftp/python/2.5.1/Python-2.5.1.tgz??
2. 解压Python-2.5.1.tgz文件
???
$ tar zxvf Python-2.5.1.tgz
?3.切换到Python-2.5.1目录下
???
$ cd Python-2.5.2$ ./configure$ make$ make install
?
4.在命令敲python 看是否安装成功.出现python解释器,说明已安装成功.
$ pythonPython 2.3.1 (r251:54863, Feb 19 2011, 19:56:33) [GCC 3.4.6 20060404 (Red Hat 3.4.6-9)] on linux2Type "help", "copyright", "credits" or "license" for more information.>>> >>> >>>
?
? 发现版本不对.这是因为一般linux都默认已安装了python.但是我们安装的python版本是2.5.1.
?
5.解决方法如下:
$ cd /usr/bin //切换到/usr/bin 目录$ ll |grep python //查看该目录下python文件$ rm -rf python //删除python这个文件,最好将该文件做个备份$ ln -s python安装的目录路径/Python-2.5.2/python ./python //建议软链接,链接到你所安装的python路径
?6.我们再在命令行下敲python
???
$ python Python 2.5.1 (r251:54863, Feb 19 2011, 19:56:33) [GCC 3.4.6 20060404 (Red Hat 3.4.6-9)] on linux2Type "help", "copyright", "credits" or "license" for more information.>>> >>> >>>
?
OK,一切大功告成!!!
?