ocean800
ocean800

Reputation: 3717

Anaconda virtual environment won't start?

So I'm trying to create a virtual environment that runs python 3.5 with Anaconda. To do that, I created a virtual environment like so:

conda create --name pythonScrapy python=3.5 

and then tried to run it by calling:

activate pythonScrapy

But when I then call conda info --envs, while the new environment shows up, the * signifying which environment is being used is stuck on the root one. What can be the reason that the comp is not switching my virual environments??

Upvotes: 1

Views: 439

Answers (1)

Amit
Amit

Reputation: 20456

Powershell doesn't support activate. use cmd or anaconda shell.

Upvotes: 3

Related Questions