Software Prerequisites
To follow the documentation outlined below, you need to have the following:
if you already have another python version installed and you do not want to create a virtual environment to run the SDK, then you have to install Python 3.10 and set it as your default Python.
Create a virtual environment using either Conda or Pipenv.
Conda | Pipenv |
---|---|
1. Anaconda: This will need to be manually downloaded, so that you have it locally on your computer. | 1. Pipenv: Will create a virtual environment manually using the following command: pipenv install --python 3.10 |
2. Open Anaconda Prompt through your search bar (this has been installed with Anaconda). Important! Don’t use the CMD.exe Prompt or the Powershell Prompt you could access through the Anaconda Navigator. They don’t accept Ctrl+C as stop command (or at least not in all systems). | |
3. Conda Docs: Use conda to create an environment and configure your python version to the correct one with the following command: conda create -n idun_env python=3.10 | |