Reputation: 31
I am eager to get started with Materials Simulation. I am facing issues trying to install Pymatgen with Anaconda. Here are the things I did. I am using Win 8.1 x64, Python 3.8.
I couldn't find any solution online to diagnose the issue. It will be great if someone can share some time and thoughts on this to over come it. It will greatly help to accelerate my progress in materials simulation efforts. Thank you in advance.
Upvotes: 1
Views: 1168
Reputation: 76820
Try using a dedicated environment for it:
conda create -n pmg -c conda-forge pymatgen
If you plan to use it in Spyder, also include the spyder-kernels
package at creation. Be sure to read the entire Spyder documention on "Working with packages and environments in Spyder".
Upvotes: 1