Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/source/chapt_install/install_optional.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ The path to the ALAMO executable will need to be set in the "Settings" panel. So
Install NLopt
^^^^^^^^^^^^^

NLopt is an optional optimization library, which can be used by FOQUS. NLopt is not available to be installed with pip, but can be installed with conda as follows::
NLopt is an optional optimization library, which can be used by FOQUS. NLopt can be installed as follows::

conda activate ccsi-foqus
conda install -c conda-forge nlopt
pip install nlopt==2.7.1

For more information, see the `NLopt Installation Instructions <https://nlopt.readthedocs.io/en/latest/>`_.
Newer versions of NLopt cannot be used with the latest versions of FOQUS. For more information, see the `NLopt Installation Instructions <https://nlopt.readthedocs.io/en/latest/>`_.


Install SnobFit
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@
"winshell; sys_platform == 'win32'",
"websocket_client>=1.1.0",
],
# pip install ccsi-foqus[nlopt] See Issue #1274 for details
extras_require={"nlopt": ["nlopt==2.7.1"]},
)

print(f"""
Expand Down
Loading