Does a python virtual environment avoid redundant installs?

后端 未结 4 1595
难免孤独
难免孤独 2021-01-17 18:07

I\'m fairly new to python and I\'m beginning to work with python virtual environments. When I create a virtual environment, I have to reinstall all the modules that I need f

4条回答
  •  难免孤独
    2021-01-17 18:43

    No it does not but that is the main point of having virtual environments because libraries depend on another and thus upgrading or modifying a library in one environment does not affect other environments.

提交回复
热议问题