📑Table Of Contents

🧠Introduction

CPython3 is a very powerful language in taking advantage of rich open-source libraries. Therefore, it is necessary to make good use of Dynamo to use it for many purposes, especially to use them. For machine learning or data analysis purposes. Wikipedia

This article is one I wrote to help the developers install to avoid the errors that arise when installing external libraries into dynamo without any problems.

📦Download Python

To download version suitable, you need to go to a website of python to install.

Before decide which version to download, you need to quickly check the current version of Dynamo Core. Based on the basic syntax below, the exact version you require to download will be displayed.

import sys
OUT= sys.path,sys.version

Untitled

From the image above, it shows that the version you need to install is 3.8.3 64bit. So quickly look for the download link on the homepage and install them.

Let go to link and select to install : https://www.python.org/downloads/release

Select Installation :

Untitled

A small note for you is to decide to choose additional paths if you need to use them on other IDE like Visual Studio Code to work.

Untitled

In Custom installation, please note, make sure you have selected pip and allow installing, this will make it easy to install the backend library.

Untitled

Check pip to complete.

Untitled