You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using Conda
|
|
using PyCall
|
|
|
|
function install_miplearn()
|
|
Conda.update()
|
|
pip = joinpath(dirname(pyimport("sys").executable), "pip")
|
|
isfile(pip) || error("$pip: invalid path")
|
|
run(`$pip install miplearn==0.4.4`)
|
|
end
|
|
|
|
install_miplearn()
|