Skip to content Skip to sidebar Skip to footer

I Cannot Run Conda Command /activate Environment On Ubuntu?

I have installed anaconda in ubuntu and am facing a problem with anaconda. I was running the following command in a conda environment: 271 pip install --user -r requirements.txt

Solution 1:

pip install conda can corrupt the conda setup. Download miniconda setup from the path in the error and run below

bash Miniconda3-latest-Linux-x86_64.sh -f

To test your installation, enter the command conda --version. If installed correctly, you will see the version of conda installed.

Post a Comment for "I Cannot Run Conda Command /activate Environment On Ubuntu?"