Sina
Sina

Reputation: 645

Mismatching Conda and Pycharm

I'm new in python and I'm confused about mismatching Conda packages list and Pycharm. In a project I need to install pytorch. Installing with pycharm lead to some error and when I install it through conda, It does not appear in pycharm. Both list is the same env.

Thanks in advance.

pycharm list pycharm list

Anaconda list anaconda list

Upvotes: 2

Views: 95

Answers (1)

Pavel Karateev
Pavel Karateev

Reputation: 8550

PyCharm shows you the list of installed packages with pip, while conda list shows both pip and conda. Meanwhile, you can switch between pip and conda with a dedicated button in PyCharm:

enter image description here

Upvotes: 2

Related Questions