gallantlab / cottoncandy

sugar for s3
http://gallantlab.github.io/cottoncandy/
BSD 2-Clause "Simplified" License
33 stars 17 forks source link

test on conda environment #65

Closed anwarnunez closed 6 years ago

anwarnunez commented 6 years ago

check that pip and setup.py installs on Linux and configuration files are generated.

cmcneil commented 6 years ago

I did the following steps, and everything works. However I did have to install boto3 and numpy by hand, as they didn't install automatically on cc install.

conda create -n py36 python=3.6 anaconda
conda activate py36
which pip
# returns <MY_MINICONDA_PATH>/envs/py36/bin/pip
pip install boto3
conda install numpy
pip install cottoncandy
python
>> import cottoncandy
# automatically generates config
cmcneil commented 6 years ago

PS Also tried in python 3.5 and python 2.7 (Intel distro) environments.

anwarnunez commented 6 years ago

thanks for testing @cmcneil !

@vsoch: My bad. The config file is created upon first import! I think your installation will work. Just try importing cottoncandy and that will create the config. Let me know.

vsoch commented 6 years ago

:snake: