Python开发环境部署

Posted 简约AI

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python开发环境部署相关的知识,希望对你有一定的参考价值。

一、python开发环境部署


1、linux开发环境

下载地址https://www.python.org/downloads/source/

 
  1. wget [https://www.python.org/ftp/python/2.7.12/Python-2.7.12rc1.tar.xz][2]
  2. tar zxcv Python-2.7.3.tgz
  3. cd Python-2.7.3
  4. ./configure --prefix=/usr/local/pythonnew
  5. make && make install
  6. ls /usr/local/pythonnew/
  7. ln s /usr/pythonnew/bin/python

/bin/pythonnew 软连接直接使用pythonnew 
setuptools工具 https://pypi.python.org/pypi/setuptools?#downloads

 
  1. wget [https://pypi.python.org/packages/45/5e/79ca67a0d6f2f42bfdd9e467ef97398d6ad87ee2fa9c8cdf7caf3ddcab1e/setuptools-23.0.0.tar.gz#md5=100a90664040f8ff232fbac02a4c5652][4]
  2. tar -zxvf setuptools-0.6c11.tar.gz
  3. cd setuptools
  4. pythonnew setup.py build
  5. pythonnew setup.py install
  6. ls /usr/local/pythonnew/bin //看到easy_install
  7. ls -s /usr/local/pythonnew/bin/easy_install /bin/easy_install.2.7.3

easy_install.2.7.3 django 安装第三方包

2、 wingide IDE

$ phthon

2.1 sys module

 
  1. import sys
  2. dir(sys) sys下的函数、成员变量等
  3. help(sys)
  4. str(sys )
  5. str(sys.path) 以语言方式显示
  6. type(sys)
  7. print sys.platform 平台信息
  8. print sys.path
  9. dir(a) a的所有函数调用
  10. a.real 真值

2.2 os module

 
  1. import os
  2. dir(os)
  3. print os.getcwd() 获取当前路径

以上是关于Python开发环境部署的主要内容,如果未能解决你的问题,请参考以下文章

搭建Python开发环境(含Selenium自动化部署)

python部署web开发环境

Ubuntu部署python3.5的开发和运行环境

Linux下搭建Python开发环境部署

deepin系统下部署Python3.5的开发及运行环境

Win10部署python多版本开发环境