python3.5开发环境

安装python3.5

为了用PyQt最新版本, 所以把Python升级到3.x
https://www.python.org/downloads/mac-osx/

我选择了3.5的稳定版本(本文写作时为3.5.3),
没有卸载系统自带的2.7.10, 因为避免系统其它功能依赖2.7.10(比如xcode)
安装目录在Library/Frameworks/Python.framework/Versions/3.5

多个python共存, 那么现在的python指向的是python2.7.10, python3指向的是python3.5.3

➜  python
Python 2.7.10 (default, Oct 23 2015, 19:19:21)
[GCC 4.2.1 Compatible Apple LLVM 7.0.0 (clang-700.0.59.5)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
➜  python3
Python 3.5.3 (v3.5.3:1880cb95a742, Jan 16 2017, 08:49:46)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()

python的第三方库安装目录是
/Library/Python/2.7/site-packages

python3的第三方库安装目录是
/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages

python3.5.x卸载方法

官方说明: https://docs.python.org/3/using/mac.html#getting-and-installing-macpython

简单来说就是

  • 删除 /Library/Frameworks/Python.framework

  • 删除 /usr/local/bin/ 下的 python 链接(symlink)

  • 2to3

  • 2to3-3.6

  • idle3

  • idle3.6

  • pip3

  • pip3.6

  • pydoc3

  • pydoc3.6

  • python3

  • python3-32

  • python3-config

  • python3.6

  • python3.6-32

  • python3.6-config

  • python3.6m

  • python3.6m-config

  • pyvenv

  • pyvenv-3.6

windows下就用安装文件来卸载.

pip3

安装python3的时候, pip3默认也已经安装好了

➜  pip3 -V
pip 9.0.1 from /Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages (python 3.5)

首先将pip3 更新到最新

➜  ~ pip3 install --upgrade pip
Requirement already up-to-date: pip in /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages

安装一个处理图像的第三方库Pillow, 命令就是

搜在线包

pip3 search Pillow

安装在线包

pip3 install Pillow

查看已经安装的库

pip3 list

virtualenv

如果多人协作, 还有一种方案是利用virtualenv

第一步. pip3 install virtualenv
第二步. 到工程目录下建立venv目录, virtualenv venv
第三步. 进度venv环境, source venv/bin/activate
注意到命令提示符变了,有个(venv)前缀,表示当前环境是一个名为venv的Python环境。
然后正常安装各种第三方包

你可能感兴趣的:(python3.5开发环境)