[Ethereum] How to use openzeppelin contracts for a specific version

openzeppelinsoliditytruffle

Consider me a beginner to writing smart contracts.
My question is, openzeppelin's contracts are using latest versions of solidity (by their repo). How do I use say 0.6 version, do they have it available?

This is because I'm also importing another contract which is of 0.6, so I can't use it with OpenZeppelin's contracts which are 0.8

Best Answer

If you are using npm and if I have to download version 3.9.0 then I would at first delete the existing openzeppelin file(if exist) then write npm install "@openzeppelin@^3.9.0" , it should work.