Where can i find the eikon_win.yml file for creating an eikon envirnoment?

Where can i find the eikon_win.yml file for creating an eikon envirnoment?

Best Answer

  • @Moody.Sultan

    I suggest taking a step back. What is it that you're looking to accomplish? Are you looking to be able to run Jupyter notebooks in Dr. Hilpisch's tutorials? Or are you looking to use Dr. Hilpisch's code samples to create new applications or scripts?

    eikon_win.yml file helps to create a conda environment where you can run Jupyter notebooks from Dr. Hilpisch's tutorials. This environment would be outdated in the sense that at this time there are more recent versions of most if not all libraries comprising the environment. The whole point of creating a conda environment is to fix the set of libraries your code (or in this case Dr Hilpisch's code) was tested against, and preserve it. The most recent versions of the libraries are not guaranteed to be compatible. And the notebooks in the tutorials may not work with most recent versions of the libraries.
    If you create and activate the environment using eikon_win.yml file, the expectation is that Dr. Hilpisch's notebooks should run without problems. Can you confirm that you activated the environment provided in eikon_win.yml using "conda activate eikon" command? If yes, what are the modules that you find missing when running the symbology notebook?

    If you're looking to use Dr. Hilpisch's code samples to create new applications or scripts, the environment provided in eikon_win.yml is not necessarily optimal. As I mentioned earlier, there are newer versions of most of the libraries utilized by Dr. Hilpisch. Rather than recreating the antiquated environment where Dr. Hilpisch's code is expected to execute without problems, you'd be better off using the environment with most recent versions of the libraries and modifying Dr. Hilpisch's samples as needed. Most of the code will likely run without modification, but some may need updating.

Answers