|
Revision 169, 0.9 kB
(checked in by dmitrey, 3 years ago)
|
move some files
|
| Line | |
|---|
| 1 |
Do you have any problems with installation for Linux, MS Windows, MacOS? |
|---|
| 2 |
Check webpage |
|---|
| 3 |
http://openopt.org/Install |
|---|
| 4 |
|
|---|
| 5 |
Installation (very briefly, link above leads to more precize): |
|---|
| 6 |
|
|---|
| 7 |
1. Ensure you have Python (v >= 2.5 is recommended), numpy (v >= 1.1.0 is recommended) and setuptools installed. |
|---|
| 8 |
You can use Linux software channels, like this for Debian/*UBUNTU: |
|---|
| 9 |
[sudo] aptitude install python-numpy |
|---|
| 10 |
[sudo] aptitude install python-setuptools |
|---|
| 11 |
(Linux OSes already have Python installed) |
|---|
| 12 |
|
|---|
| 13 |
# optional, for graphics output: |
|---|
| 14 |
[sudo] aptitude install python-matplotlib |
|---|
| 15 |
|
|---|
| 16 |
# optional packages that may be present in software channels: |
|---|
| 17 |
# python-scipy, python-cvxopt, some others |
|---|
| 18 |
|
|---|
| 19 |
All optional packages and/or solvers could be installed after OO installation, when they will be required for the tasks involved. |
|---|
| 20 |
|
|---|
| 21 |
2. |
|---|
| 22 |
[sudo] python setup.py install |
|---|
| 23 |
or |
|---|
| 24 |
[sudo] python setup.py develop |
|---|
| 25 |
|
|---|
| 26 |
3. To check installation you could try running "python nlp_1.py" from /examples directory |
|---|