-
Notifications
You must be signed in to change notification settings - Fork 281
New issue
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
conda activate <SMTH> #81
Comments
Yeah probably a problem. To fix this particular issue, from e.g. https://github.com/ContinuumIO/docker-images/blob/master/anaconda3/Dockerfile#L11 we should change
to
|
fix #81 activate conda base environment
For Miniconda3 4.4.10, I still receive the same error despite the changes. Update: interestingly, it was fixed by removing |
Adding |
I ended up using the version: 2
jobs:
conda:
docker:
- image: frolvlad/alpine-miniconda3
steps:
# gcc for numba install
- run: apk add --no-cache build-base ca-certificates git openssh
- checkout
- restore_cache:
keys:
- conda-pkgs
- run: conda env create
- save_cache:
key: conda-pkgs
paths:
- /opt/conda/pkgs
- run: source activate numba-xnd && cd numba && python setup.py develop
- run: source activate numba-xnd && python -m unittest
workflows:
version: 2
test:
jobs:
- conda |
I do:
docker run -i -t continuumio/anaconda3 /bin/bash
Then i try to activate any env (for ex base) with
conda activate base
i recieveI believe this is related with the change in recomended way to enable conda in shell
https://github.com/conda/conda/releases/tag/4.4.0
more specifically this is the line that creates this problem
https://github.com/ContinuumIO/docker-images/blob/13044336262c9401e35cd490c5545656d3241b2c/anaconda3/Dockerfile#L11
unfortunatelly i can't figure out how to fix it.
The text was updated successfully, but these errors were encountered: