conda env create failed?

Wirawan Purwanto

I tried to create a new environment for anaconda installation that I want to tweak apart from the original install. I found this not working:

$ conda env create --name pandas018numpy111 pandas018test1
Using Anaconda Cloud api site https://api.anaconda.org
Error: Invalid name, try the format: user/package
pandas018test1 does not exist or can't be accessed
environment.yml file not found
There is no requirements.txt

What is wrong here?

What I wanted to accomplish was to create the copy of the original environment, add some modules for testing around, then toss away the test environment (pandas018numpy111).

Wirawan Purwanto

Ah, I found the answer.

What I need is the conda create command, actually,

$ conda create -n pandas018numpy111 --clone root

Then I have the throw-away environment to modify, etc and later just toss. To switch then I will just use:

$ source activate pandas018numpy111

and to exit from this environment,

$ source deactivate

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Wrong pip in conda env

From Dev

Failed to run Python script with Conda

From Java

Create empty conda environment

From Dev

Create a conda environment offline

From Dev

Create a conda environment offline

From Dev

Installing Python Package to Conda Env Without Using Conda

From Java

Python - Activate conda env through shell script

From Dev

Packages from Conda env not found in Jupyer Notebook

From Dev

Conda env activation: Weird "must be sourced" error

From Dev

uWSGI with conda env keeps failing (Docker)

From Dev

How do I activate a conda env in a subshell?

From Dev

Python - Activate conda env through shell script

From Dev

Conda env not loading correct version of numpy

From Dev

Pycharm autocomplete doesn't work in conda env

From Dev

Env variables failed to load in bash

From Dev

Create a post activate script in Conda

From Dev

conda gfortran on osx failed link issue

From Dev

how to reuse global site-packages in conda env

From Dev

Installing TensorFlow in python 3.5 Anaconda distro conda env

From Dev

change default environment from (base) to (env) in conda/anaconda in Ubuntu

From Dev

`conda env remove` hangs for 16 hours, what are my options?

From Dev

Activating a new Conda env through shell from within Jupyter Notebook

From Dev

How to switch conda env to use with jupyther notebook (win10)

From Dev

Conda: specify environment variable before creating env from YAML file

From Dev

Heroku and Node 0.10.29: Failed to replace env in config

From Dev

scons still failed after setup env

From Dev

Heroku and Node 0.10.29: Failed to replace env in config

From Java

How to create conda environment with specific python version?

From Dev

Create conda package across many versions

Related Related

  1. 1

    Wrong pip in conda env

  2. 2

    Failed to run Python script with Conda

  3. 3

    Create empty conda environment

  4. 4

    Create a conda environment offline

  5. 5

    Create a conda environment offline

  6. 6

    Installing Python Package to Conda Env Without Using Conda

  7. 7

    Python - Activate conda env through shell script

  8. 8

    Packages from Conda env not found in Jupyer Notebook

  9. 9

    Conda env activation: Weird "must be sourced" error

  10. 10

    uWSGI with conda env keeps failing (Docker)

  11. 11

    How do I activate a conda env in a subshell?

  12. 12

    Python - Activate conda env through shell script

  13. 13

    Conda env not loading correct version of numpy

  14. 14

    Pycharm autocomplete doesn't work in conda env

  15. 15

    Env variables failed to load in bash

  16. 16

    Create a post activate script in Conda

  17. 17

    conda gfortran on osx failed link issue

  18. 18

    how to reuse global site-packages in conda env

  19. 19

    Installing TensorFlow in python 3.5 Anaconda distro conda env

  20. 20

    change default environment from (base) to (env) in conda/anaconda in Ubuntu

  21. 21

    `conda env remove` hangs for 16 hours, what are my options?

  22. 22

    Activating a new Conda env through shell from within Jupyter Notebook

  23. 23

    How to switch conda env to use with jupyther notebook (win10)

  24. 24

    Conda: specify environment variable before creating env from YAML file

  25. 25

    Heroku and Node 0.10.29: Failed to replace env in config

  26. 26

    scons still failed after setup env

  27. 27

    Heroku and Node 0.10.29: Failed to replace env in config

  28. 28

    How to create conda environment with specific python version?

  29. 29

    Create conda package across many versions

HotTag

Archive