I'm getting this error when I'm trying to plot linear programming equations on Jupyter Notebook using Pulp.
AttributeError: 'NoneType' object has no attribute 'actualSolve'
Context:

For some reason, installing Pulp using easy_install did not install default solver. I had to uninstall Pulp using pip uninstall pulp and then reinstalled using pip install pulp.
Use the following to see if it installed any solver.
import pulp as pl
solver_list = pl.listSolvers(onlyAvailable=True)
solvecoin-or.github.io/pulp/guides/how_to_configure_solvers.htmlprob.setSolver()before callingprob.solve()it will set default solver.`