is `conda install` used for installing dependencies if a Conda environment is activated?
See original GitHub issue- I have searched the issues of this repo and believe that this is not a duplicate.
- I have searched the documentation and believe that my question is not covered.
Issue
As of 1.0.0 Conda environments are supported. When I install the dependencies of a project with poetry install
, and say numpy is in the dependencies, will it use the numpy I get with conda install numpy
or the numpy I get with pip install numpy
?
Issue Analytics
- State:
- Created 4 years ago
- Comments:8 (2 by maintainers)
Top Results From Across the Web
How to Manage Python Dependencies with Conda - ActiveState
Conda can be used to create, export, list, remove, and update environments that have different Python versions and different packages installed ...
Read more >Managing environments - Conda
With conda, you can create, export, list, remove, and update environments that have different versions of Python and/or packages installed in them.
Read more >Install packages in a conda environment on IU's high ... - IU KB
Activate the conda environment (see step 4, above). · Run your program's commands. (You won't have to install the package each time you...
Read more >Working with Environments – Introduction to Conda for (Data ...
Activate (deactivate) a particular environment. Install packages into existing environments using Conda (+pip). Specify the installation location of an ...
Read more >python - Difference between conda and pip installs within a ...
For my understanding of Conda that, it manages for you all the dependencies. For example if you have a package (like pandas) that...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
see https://github.com/python-poetry/poetry/issues/1856
Conda is great for creating isolated python environments on Windows. On the other hand, in my experience, the tech behind conda packages is great in principle, but fails in practice. I used to install packages mainly from conda repositories, and pip for whatever wasn’t available, but updating mixed environments was a big headache. Mixing the two complicates things greatly. There are serious discrepancies between conda repositories and pypi: the same module is sometimes packaged with different names, dependencies can be different for the same module, and conda tends to lag behind making new versions available. Also, Pypi is simply better known and supported. I can imagine that it would be a very complex task for poetry developers to make the two systems work together; perhaps not a good idea altogether.