anaconda / nb_conda

Conda environment and package access extension from within Jupyter
BSD 3-Clause "New" or "Revised" License
140 stars 32 forks source link

environments not shown #59

Open ptulpen opened 7 years ago

ptulpen commented 7 years ago

Hello, i try to use nb_kernels via the anaconda-nb-extentions package, using this steps


conda create -n jupyter python=3.5
source activate jupyter
conda install anaconda-nb-extensions -c anaconda-nb-extensions

the installation runs successfully


Enabling nb_conda_kernels...
Enabled nb_conda_kernels

+ /opt/conda/envs/jupyter/bin/jupyter-nbextension enable nbpresent --py --sys-prefix
Enabling notebook extension nbpresent/js/nbpresent.min...
      - Validating: OK
+ /opt/conda/envs/jupyter/bin/jupyter-serverextension enable nbpresent --py --sys-prefix
Enabling: nbpresent
- Writing config: /opt/conda/envs/jupyter/etc/jupyter
    - Validating...
      nbpresent  OK

+ /opt/conda/envs/jupyter/bin/jupyter-nbextension enable nb_anacondacloud --py --sys-prefix
Enabling notebook extension nb_anacondacloud/main...
      - Validating: OK
+ /opt/conda/envs/jupyter/bin/jupyter-serverextension enable nb_anacondacloud --py --sys-prefix
Enabling: nb_anacondacloud
- Writing config: /opt/conda/envs/jupyter/etc/jupyter
    - Validating...
      nb_anacondacloud  OK

+ /opt/conda/envs/jupyter/bin/jupyter-nbextension enable nb_conda --py --sys-prefix
Enabling notebook extension nb_conda/main...
      - Validating: OK
Enabling tree extension nb_conda/tree...
      - Validating: OK
+ /opt/conda/envs/jupyter/bin/jupyter-serverextension enable nb_conda --py --sys-prefix
Enabling: nb_conda
- Writing config: /opt/conda/envs/jupyter/etc/jupyter
    - Validating...
      nb_conda  OK

But I neither have a conda tab nor another kernel to choose beside the default kernel

What am I missing ?

damianavila commented 7 years ago

But I neither have a conda tab nor another kernel to choose beside the default kernel

Maybe you are not starting the correct notebook server that should load those extensions? Maybe some other config in the user or system space disabling the extension?

Btw, the extensions are available from defaults and conda-forge so you don't need to use the anaconda-nb-extension channel... in fact that channel can be a little bit outdated.