-
I know it works within a conda environment, but will it use conda to manage python depends or does it only use pip? This is important because if it uses conda it would utilize the caching system to prevent unnecessary re-downloading of packages. Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I'll update it. |
Beta Was this translation helpful? Give feedback.
-
After a simple investigation, it appears that when pip is installed using Do you need anything more than this? Furthermore, since there are often packages that cannot be installed with |
Beta Was this translation helpful? Give feedback.
After a simple investigation, it appears that when pip is installed using
conda install pip
, the cache between conda and pip is shared, so packages already installed by conda are not reinstalled by pip.Do you need anything more than this?
Furthermore, since there are often packages that cannot be installed with
conda install
, it seems that there will be cases where one must attempt with conda and, if that fails, retry with pip... This also seems to have potential problems.