I have tried to create a conda environment for machine learning and general environment bur follwoing https://blog.quantinsti.com/set-up-python-system/
but got following error
C:\Users\silsw>conda env create --file=https://quantra.quantisnti.com/downloads/machinelearning/environment.yml
C:\Users\silsw\anaconda3\Lib\argparse.py:2005: FutureWarning: remote_definition
is deprecated and will be removed in 25.9. Use conda env create --file=URL
instead.
action(self, namespace, argument_values, option_string)
Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x000002220A5CF800>: Failed to resolve 'quantra.quantisnti.com' ([Errno 11001] getaddrinfo failed)")': /downloads/machinelearning/environment.yml
Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x000002220A8E2570>: Failed to resolve 'quantra.quantisnti.com' ([Errno 11001] getaddrinfo failed)")': /downloads/machinelearning/environment.yml
Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x000002220A8E25D0>: Failed to resolve 'quantra.quantisnti.com' ([Errno 11001] getaddrinfo failed)")': /downloads/machinelearning/environment.yml
CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://quantra.quantisnti.com/downloads/machinelearning/environment.yml>
Elapsed: -
An HTTP error occurred when trying to retrieve this URL.
HTTP errors are often intermittent, and a simple retry will get you on your way.
IT SEEMS that the URL is Not available.
does anybody shed light on it… how can i creat ML and general environement .
Hi Amit,
You can install the environments by typing the following commands in the Anaconda Prompt,
ML environment:
conda env create -f Learn algorithmic trading from top institutions and experts | Quantra by QuantInsti
General environment:
conda env create -f Learn algorithmic trading from top institutions and experts | Quantra by QuantInsti
Please let us know if you are still facing any issues.
Thanks for ur suggestion Akshay. Actually i downloded the .yml file from the net and saved it inside my user folder and then ran the command
conda env create -f environment.yml
it has created new conda environment with name quantra_py( first line of the .yml line)
thanks for your help.