Use Conda to clone the environment, very convenient

  • If the environment required for a project has been created before , and you want to fill in other things on the basis of the previous environment, but sometimes something happens to change the previous environment, it is recommended to create a new environment or clone a copy directly The previous environment (recommended).
  • The way to clone the environment is:conda create -n conda-env2 --clone conda-env1
    • conda-env2 is the newly created environment (clone from other environments)
    • conda-env1 is the existing environment

Then pip list looked at it and there was nothing wrong with it.

References

Swin Transformer Faster R-CNN Object Detection - beyonderwei

Guess you like

Origin blog.csdn.net/weixin_43332715/article/details/124406028