1장 시작하기 앞서#
파이썬을 활용한 경영과학(OR/MS) 튜토리얼입니다. 본 강좌의 목적은 수리 모형을 파이썬으로 구현하는데 있습니다. 따라서, 이론적인 내용 및 수리 모형으로 정식화 과정 생략하였습니다. 자세한 내용은 참고한 서적을 참고하시기 바랍니다.
conda config --add channels https://conda.anaconda.org/gurobi
conda install gurobi
pip install pulp
pip install deap
Dependencies#
or-tutorial
requires:
Python (>= 3.7.4)
NumPy (>= 1.16.5)
pandas (>= 0.25.1)
PuLP (>= 1.6.9)
GUROBI (>= 8.1.1)
DEAP (>= 1.3.1)
tabulate (>= 0.8.5)
import pulp as pl
pl.listSolvers(onlyAvailable=True)
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
Cell In[1], line 1
----> 1 import pulp as pl
3 pl.listSolvers(onlyAvailable=True)
ModuleNotFoundError: No module named 'pulp'