How to install TFX on Windows 10?

Can someone briefly explain to me how to install TFX on Google Colab, or can someone share some yt video or guide to this?

I don’t have a windows machine to help you out. Some of the other mentors / staff have access to windows machine. It’d help if you shared more details regarding the issues you’re facing with installing tfx on windows 10.

Hello @Jovan_Krunic
Do you want to install TFX on Google Colab or Locally on your Windows machine? cause it’s different.

Installing TFX on Google Colab:

Run the following command in a code cell to install TFX:
!pip install tfx

install TFX on Windows 10:

Open a command prompt ‘CMD’ and run the following commands:

python -m venv tfx-env
tfx-env\Scripts\activate
pip install tensorflow
pip install tfx
tfx --version

Hope that helps