
python
stonenotes123
ddd
展开
-
pycharm 教程(一)安装和首次使用
PyCharm 是我用过的python编辑器中,比较顺手的一个。而且可以跨平台,在macos和windows下面都可以用,这点比较好。 首先预览一下 PyCharm 在实际应用中的界面:(更改了PyCharm的默认风格)安装首先去下载最新的pycharm 2.7.3,进行安装。可以直接在官网下载。PyCharm 的激活方式:原创 2013-10-30 15:41:03 · 3599 阅读 · 0 评论 -
python manage.py runserver 0.0.0.0:8000
Changing the portBy default, the runserver command starts the development server on the internal IP at port 8000.If you want to change the server's port, pass it as a command-line argument.转载 2013-10-31 18:03:44 · 1323 阅读 · 0 评论 -
更新mac自带的python
mac lion自带的python是2.7版本的,有点儿低,要使用一些应用的时候还需要3.3以上的,这时可以用以下的方法更新mac自带的python。先去python的官网下载最新的python,并安装好。现在要删除mac自带的python,如下:sudo rm -R /System/Library/Frameworks/Python.framework/Ver原创 2013-11-04 18:04:19 · 1095 阅读 · 0 评论 -
sqlalchemy的安装
1. 下载sqlalchemyhttp://prdownloads.sourceforge.net/sqlalchemy/SQLAlchemy-0.7b2.tar.gz?download2. 解压tar -zvxf SQLAlchemy-0.7b2.tar.gzcd到解压目录3. 安装$sudo python setup.py install4. 验证>原创 2013-11-04 18:33:58 · 4060 阅读 · 0 评论