You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To help with testing while this is in the works. Here is what I did to meet all the requirements:
# Get help from conda for hard-to-install packages# and create a new isolated Py3 environment with flask in it
conda create -n mweb python=3 flask
source activate mweb
# Install NN-related ones
conda install -y tensorflow keras theano
# Install ML- and data-related ones
conda install -y numpy scipy pandas scikit-learn
# Install the notorious biopython one
conda install -y biopython
# Now pip-install the rest
pip install mhctools mhcflurry
which can formally be defined as a conda env file:
To help with testing while this is in the works. Here is what I did to meet all the requirements:
which can formally be defined as a conda env file:
and be used to create a fresh conda env via:
conda env create --file conda-env.yml source activate mhcweb
The text was updated successfully, but these errors were encountered: