有没有人能让 Chef Solo 安装我在某处提供的 python .egg 文件?
easy_install_package "myeggfile"
action: install
???
end
有没有人能让 Chef Solo 安装我在某处提供的 python .egg 文件?
easy_install_package "myeggfile"
action: install
???
end
根据easy_install_package
文档,您应该使用该source
属性来使用本地文件:
easy_install_package 'name' do
source '/path/on/disk/to/my.egg'
end