三维基因组学相关分析Pymol学习

Windows系统安装免费版PyMOL

2019-05-17  本文已影响0人  yanghui2048

前言

PyMOL是一款由Python语言开发的开源的分子三维结构显示软件,被广泛运用于科学研究与教育领域,现由Schrodinger公司提供技术支持。可从官网直接购买PyMOL的可执行版本,或者下载试用版本。另外University of California Irvine对PyMOL源码进行了预编译,并免费提供PyMOL的相关wheel文件。

PyMOL

Version 2.3.1 - Updated April 17th 2019 (Installation instructions)

For previous versions and Python 2.7 bundles, see here.

These bundles include Python 3.7


Download PyMOL

Python安装

1 官网下载Python安装包

本文下载的版本为:Python 3.7.3,Windows x86-64 executable installer,如图所示。

Python

2 安装Python

3 Python安装验证

PyMOL安装

1 下载whl文件

Unofficial Windows Binaries for Python Extension Packages
  1. numpy+mkl安装包 numpy‑1.15.4+mkl‑cp37‑cp37m‑win_amd64.whl
  2. Pmw软件包 Pmw‑2.0.1‑py3‑none‑any.whl
  3. pymol安装包 pymol‑2.3.0‑cp37‑cp37m‑win_amd64.whl
  4. pymol_launcher安装包 pymol_launcher‑2.1‑cp37‑cp37m‑win_amd64.whl
pymol whl NumPy

2 安装PyMOL软件

C:\Users\yangh>cd C:\pymol

C:\pymol>pip install numpy-1.15.4+mkl-cp37-cp37m-win_amd64.whl # 安装numpy+mkl
Processing c:\pymol\numpy-1.15.4+mkl-cp37-cp37m-win_amd64.whl
Installing collected packages: numpy
Successfully installed numpy-1.15.4+mkl

C:\pymol>pip install Pmw-2.0.1-py3-none-any.whl # 安装Pmw
Processing c:\pymol\pmw-2.0.1-py3-none-any.whl
Installing collected packages: Pmw
Successfully installed Pmw-2.0.1

C:\pymol>pip install pymol-2.3.0-cp37-cp37m-win_amd64.whl # 安装pymol-2.3.0
Processing c:\pymol\pymol-2.3.0-cp37-cp37m-win_amd64.whl
Requirement already satisfied: numpy in c:\python37\lib\site-packages (from pymol==2.3.0) (1.15.4+mkl)
Requirement already satisfied: Pmw in c:\python37\lib\site-packages (from pymol==2.3.0) (2.0.1)
Installing collected packages: pymol
Successfully installed pymol-2.3.0

C:\pymol>pip install pymol_launcher-2.1-cp37-cp37m-win_amd64.whl # 安装pymol_launcher
Processing c:\pymol\pymol_launcher-2.1-cp37-cp37m-win_amd64.whl
Requirement already satisfied: pymol in c:\python37\lib\site-packages (from pymol-launcher==2.1) (2.3.0)
Requirement already satisfied: numpy in c:\python37\lib\site-packages (from pymol->pymol-launcher==2.1) (1.15.4+mkl)
Requirement already satisfied: Pmw in c:\python37\lib\site-packages (from pymol->pymol-launcher==2.1) (2.0.1)
Installing collected packages: pymol-launcher
Successfully installed pymol-launcher-2.1

C:\pymol>pip list # 查看已安装软件
Package    Version
---------- ----------
numpy      1.15.4+mkl
pip        19.1.1
Pmw        2.0.1
pymol      2.3.0
setuptools 40.8.0

C:\pymol>pip show pymol #查看安装后的pymol信息
Name: pymol
Version: 2.3.0
Summary: PyMOL is a Python-enhanced molecular graphics tool. It excels at 3D visualization of proteins, small molecules, density, surfaces, and trajectories. It also includes molecular editing, ray tracing, and movies. Open Source PyMOL is free to everyone!
Home-page: http://pymol.org
Author: Schrodinger
Author-email: UNKNOWN
License: UNKNOWN
Location: c:\python37\lib\site-packages
Requires: numpy, Pmw
Required-by:

除直接在Python环境中安装之外,还可在Anaconda(Python3.7)环境中安装,或者直接官网下载Windows版,购买LICENSE(有钱真好,简单、粗暴又省时,可惜搞科研的大都是吃土人士)。

关于PyMOL的学习使用,以后如有时间再做系统整理分享。

以上软件安装包存放在百度云盘中,如有需要,自行下载。

python-3.7.3版本+pymol-2.3.0版本
链接:https://pan.baidu.com/s/1HYfqdhD1HVRMV1wwObDfRw
提取码:bqv2

python-3.9.1版本+pymol-2.5.0版本
链接:https://pan.baidu.com/s/1WLv1YHZrfQlHhGdD55uVOQ
提取码:prau

参考

  1. PyMOL Windows Install https://pymolwiki.org/index.php/Windows_Install
  2. PyMOL Wiki http://www.PyMOLwiki.org/index.php/Main_Page

近期由Windows 7转战Window10,软件安装时做了部分记录,作为简书的开篇一文,分享给大家,仅供参考。

上一篇下一篇

猜你喜欢

热点阅读