Installing quantra environment with machine learning libraries

When I try to install quantra environment with machine learning libraries on my windows os, I get this error message

(base) C:\Users\USER>create -f https://quantra.quantinsti.com/downloads/machinelearning/environment.yml
‘create’ is not recognized as an internal or external command,
operable program or batch file.

(base) C:\Users\USER>conda env create -f https://quantra.quantinsti.com/downloads/machinelearning/environment.yml
Channels:

  • conda-forge
  • defaults
    Platform: win-64
    Collecting package metadata (repodata.json): done
    Solving environment: failed

LibMambaUnsatisfiableError: Encountered problems while solving:

  • package tensorflow-base-2.6.0-gpu_py37hb3da07e_0 requires scipy >=1.7.1, but none of the providers can be installed

Could not solve for environment specs
The following packages are incompatible
├─ scipy 1.7.0 is requested and can be installed;
└─ tensorflow 2.6.0 is not installable because it requires
└─ tensorflow-base [2.6.0 eigen_py37h03e61e6_0|2.6.0 eigen_py38h03e61e6_0|…|2.6.0 mkl_py39h9201259_0], which requis
└─ scipy >=1.7.1 , which conflicts with any installable versions previously reported.

Please guide me on how to go ahead

I was having the same issue. I used the create command below, which I found in Unable to create Anaconda environment - #2 by Akshay_Choudhary.

conda env create -f https://raw.githubusercontent.com/quantra-go-algo/Quantra_Environment/main/environment_windows_ml.yml

Thank you for the reply, Crypto Monster.

Hello Adithya,

There might be certain issues with the libraries installed, and can you try reinstalling the environment with the following code:

conda env create -f https://raw.githubusercontent.com/quantra-go-algo/Quantra_Environment/main/environment_windows_ml.yml

Thank you for the response.
I was able to install the environment with the link you gave.