Python – conda environment name issue (missing)

conda environment name issue (missing)… here is a solution to the problem.

conda environment name issue (missing)

I’ve created an environment using:

conda create --prefix C:\Users\Dell\Dropbox\DjangoProjects\webenv python=3.6

After execution: conda env list I noticed that the new environment I just created is missing the environment name.

enter image description here

I can activate C:\Users\Dell\Dropbox\DjangoProjects\webenv
But it doesn’t display any name.

The question now is how to give the newly created environment a specific name?

Solution

This is an issue with Conda, but now it’s closed. You can run the following command and create a new environment again:

conda update conda
conda update anaconda

Related Problems and Solutions