We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
The text was updated successfully, but these errors were encountered:
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 ..
Sorry, something went wrong.
No branches or pull requests
Trying to build a docker based on Dockerfile
ultimately results in failure due to a missing file:
The text was updated successfully, but these errors were encountered: