I want to setup a python3 virtual environment with existing installed packages.
I am currently on a cluster environment and there are many python modules installed. i.e python/3.7.4 python/3.8.4 and so on.
I can not install any packages to this shared/public modules. But I can set up my own virtual environment using these modules.
Lets say, python/3.8.4 module has a package installed named "my_package", and this package depends on system environment (i.e GNU libc 2.17). I can not install "my_package" in my virtual environment since I can not install anything that directly depends on system environment.
So if it may possible, I create virtual environment from python/3.8.4 named "python_284_venv" which will copy existing site packages (i.e. "my_package") installed in my virtual environment.
Thanks in advance.