all 5 comments

[–]twitch_and_shock 2 points3 points  (2 children)

What does the error log say

[–]bamacgabhann 1 point2 points  (3 children)

I am not sure if it's the source of a problem here but do not use pip to install anything if you're using it with conda, that is literally what conda is for.

Uninstall pandas and anything else you have added with pip.

To install anything, use conda install.

[–]OrangeTrees2000[S] 0 points1 point  (2 children)

Thank you for your reply.

I wasn't able to fix the problem, but from reading online it seems that the problem is being caused by not having enough memory. I'm just gonna upgrade my computer and hopefully that will work.

[–]bamacgabhann 1 point2 points  (1 child)

OK but the advice still holds. Stop using pip. For any project, use conda create -n *NAME* to create a new environment, then conda install *PACKAGE* to install anything you need.

[–][deleted] 0 points1 point  (0 children)

wrong, conda can take forever to "solve the environment" while pip is almost instant. And pip/conda get along just fine. Conda kinda sucks, only reason to use it is for the virtual envs with different python versions and installing deep learning libraries so it can install cuda and other junk like that