When I create a python project in PyCharm on my own and run a python file than have a line
import cplex
the import works fine. However, if I clone the project from GitHub the same line of code is not working and I get
No module named 'cplex'
error.
SOLUTION ATTEMPT
First thing that I verify in the clone project was the 'project interpreter' but after setting it to the same interpreter as in the original project I still get the same error.
What are the other meta-params of the project that I should change to get cplex working?