Waaberi Ibrahim
Waaberi Ibrahim

Reputation: 925

Getting an error when creating a conda environment

I try to make a conda environment for my tensorflow code but when i try it says: CondaValueError: The target prefix is the base prefix. Aborting.

C:\Users\waabe>conda create -m tensor python=3.6

CondaValueError: The target prefix is the base prefix. Aborting.

I was watching a tutorial made by Tech With Tim and for him it worked.

Could you help me?

Upvotes: 2

Views: 2038

Answers (1)

Yozachar
Yozachar

Reputation: 398

The command is like:

$ conda create -n tensor python=3.6

Reference: https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#creating-an-environment-with-commands

Upvotes: 2

Related Questions