我是一位正在探索在Amazon Web Services上使用Dask的科学家。我对Dask有一些经验,但对AWS没有经验。我有一些大型的自定义任务图要执行,如果我能向他们展示如何,一些同事可能也想这样做。我认为我应该使用Kubernetes with Helm,因为我属于"Try out Dask for the first time on a cloud-based system like Amazon, Google, or Microsoft Azure"类别。
<script>
@if(!empty(Session::get('message')))
var popupId = "{{ uniqid() }}";
if(!sessionStorage.getItem('shown-' + popupId)) {
swal({
html:
"{{Session::get('message')}}",
showCloseButton: true,
showCancelButton: false,
showConfirmButton: false,
animation: false,
customClass: 'animated tada',
focusConfirm: false,
background: '#008eb0'
});
}
sessionStorage.setItem('shown-' + popupId, '1');
@endif
</script>
或pip
索引上。感谢您的帮助!
答案 0 :(得分:1)
您都可以使用。通常,从Helm开始比较简单。
您可以使用pip或conda安装自定义软件。他们不需要在PyPI或anaconda默认频道上。您可以将pip或conda指向其他频道。这是一个使用github中的pip安装软件的示例
pip install git+https://github.com/username/repository@branch
对于小型自定义文件,您还可以使用Client.upload_file方法。