Anaconda Install Pyipopt: Libipopt.so.1
I'm completely new to Python and most aspects of compiling C. My default python interpreter is the anaconda interpreter for python 2.7. I'm trying to install pyipopt following thes
Solution 1:
The guide you've provided guides the user to install using sudo. When one does that, the packaged is installed in the system. And since you are using python from Anaconda and not from the system, Anaconda cannot find pyipopt, since it is not on its path.
I suggest that you try installing using:
$ python setup.py build
$ python setup.py install
Note that I removed the sudo.
Regarding the libipopt.so.1 library, maybe this answer from @alk can help you.
Post a Comment for "Anaconda Install Pyipopt: Libipopt.so.1"