# OpenFold A faithful PyTorch reproduction of DeepMind's [AlphaFold 2](https://github.com/deepmind/alphafold). ## Installation 1. Having installed Python 3.9, install dependencies. ```bash pip3 install -r requirements.txt ``` 2. Install third-party dependencies with: ```bash scripts/install_third_party_dependencies.sh ``` This script installs Miniconda locally and creates a conda virtual environment with all of the packages required to run Openfold. To activate the environment, run: ```bash scripts/activate_conda_venv.sh ``` To deactivate it, run ```bash scripts/deactivate_conda_venv.sh ``` ## Features OpenFold fully reproduces AlphaFold's inference and data processing pipelines, but is written entirely in PyTorch rather than JAX/TensorFlow. It is capable of importing AlphaFold's original pretrained weights. Future versions will support multi-GPU training with [DeepSpeed](https://github.com/microsoft/DeepSpeed).