hosts/ci/setup_conda_env.sh

9 lines
220 B
Bash
Raw Normal View History

2017-06-29 05:51:37 +02:00
#!/bin/bash
echo "Creating a Python $PYTHON_VERSION environment"
conda create -n hosts python=$PYTHON_VERSION || exit 1
source activate hosts
echo "Installing packages..."
conda install mock flake8 beautifulsoup4 lxml