Reputation: 12384
I installed miniconda
on a Windows machine and whenever I type python
in a PowerShell window to start up Python
I get the following:
This Python interpreter is in a conda environment, but the environment has not been activated. Libraries may fail to load. To activate this environment please see https://conda.io/activation
I followed the link, but I honestly do not understand what I need to do...
Any tips?
Upvotes: 0
Views: 2008
Reputation: 12305
In a command shell:
conda activate
And if this doesn't work yet:
conda init --all
Upvotes: 1