It seems that PythonCall.jl and CondaPkg.jl are becoming increasingly useful packages. In particular CondaPkg provides tools for the management of Python's virtual environments via CondaPkg.toml which is very convenient due to its similarity to Project.toml.
However, when using Jupyter Notebook via IJulia, another Python Anaconda installation is being created. That results that tons of dependencies are being duplicated in both Conda.jl and CondaPkg.jl environments.
How to force IJulia to use rather the existing CondaPkg installation rather than allow it to install Jupyter via Conda.jl? How to avoid many condas in my Julia-to-Python Jupyter workflows?
Such configuration can be achieved via the following commands:
With this configuration it is possible to avoid duplicating Python packages and stick to
CondaPkgfor Python environment management.