I use virtualenv for the sandbox of my Python environment, pip for installing / uninstalling packages, and yolk for displaying packages.
I can install packages in my virtual environment using pip install <package name> -e=<environment name> , and I think I don't need to have pip inside my virtual environment. Am I right?
If I need to specify all installed packages in my virtual environment, can I use yolk -l for this? I know I can do this by saving yolk inside the environment, but it is also possible by keeping yolk outside the environment, i.e. a global Python installation.
Thanks.
source share