Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Building docker is missing environment.yml file #99

Open
OleinikovasV opened this issue Mar 22, 2022 · 1 comment
Open

Building docker is missing environment.yml file #99

OleinikovasV opened this issue Mar 22, 2022 · 1 comment

Comments

@OleinikovasV
Copy link

Trying to build a docker based on Dockerfile

docker build .

ultimately results in failure due to a missing file:

EnvironmentFileNotFound: '/code/environment.yml' file not found

@TJGorrie
Copy link

Hi, the dockerfile instructions are largely out of date.

The recommended installation process is to use a conda environment.

conda create -n fragalysis_env anaconda -y
conda activate fragalysis_env
conda install -c conda-forge rdkit -y

# Install our-bespoke version of gemmi # Required
git clone https://github.com/xchem/gemmi_pandda.git
cd gemmi_pandda/
pip install -U --force-reinstall .
cd ..

# Also Required
git clone https://github.com/xchem/pandda_gemmi.git
cd pandda_gemmi/
pip install -e .
cd ..

# Finally install the api
git clone "https://github.com/xchem/fragalysis-api.git"
cd fragalysis-api/
pip install -e .
cd ..

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants