Xblock Versions

Good day, I hope everyone is well.

Is it possible to know which specific version of an xblock is installed in openedx?

If possible, how can I check or what commands should I use to check?

I am currently using Tutor version = 15.3.9

Beforehand thank you very much !

Hello @GonzaloZupo,

Yes, you can check version of installed Xblock in Open edX Tutor.

For that, you have to follow this:

# Based on your Tutor installation you can use either local or dev
tutor local/dev exec lms bash

# This will list all installed packages & blocks with their version
pip list

# To list specific package or xlock
pip list | grep <your package/xblock name>

# To find version of your package or xblock
pip show <your package/xblock name>

I hope this will help.

1 Like