hello, can someone help me, how can I import a specific version of a module, like for exemple when I import any module it’s directly the last version, but how can I get an older version / a specific version ?
Hey @Scrozi-Unknown, welcome to the community!
If you’re using Python and pip
:
pip install <package>==<version>
Or poetry
:
2 Likes
Can you please tell us what language you’re using?
1 Like