hosts/ci/setup_conda_env.sh

9 lines
215 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..."
2018-09-01 10:28:05 +02:00
conda install flake8 beautifulsoup4 lxml