Home > Mobile >  Not able to work with Miniconda on Windows 10
Not able to work with Miniconda on Windows 10

Time:04-03

I have been trying to use a Conda Environment and I am working with Python 3.10.2. I want to install Pandas and SciPy through Miniconda. I downloaded it but when I tried running conda install pandas on the command prompt it says that "Conda is not recognised as an internal or an external command, a program or a batch file'. What could have gone wrong?
Can you also suggest an alternate way to download Pandas?

CodePudding user response:

Conda probably wasn't added as a path variable. Locate the conda.exe add it to the path.

Can you also suggest an alternate way to download Pandas?

You could use pip:

pip install pandas
  • Related