Todd Jordan

Results 9 comments of Todd Jordan

I was able to work around this issue by deleting ``` - package_name: libgomp1 type: unix ``` from the requirements section of .mlem file.

> Do you use xgboost/catboost/lightgbm? Is you model working without libgomp1? I am using lightghm. It doesn't appear the container is working.

> It seems that we are lacking `apt-get update` before installing it. We'll add it in #345. For now you can use alternative template as a workaround. For that, create...

It appears that it isn't picking up the `pre_install.j2` my `.mlem/builder/docker-builder.mlem` is: ``` args: templates_dir: - . image: name: s_model object_type: builder server: type: fastapi type: docker ``` my `pre_install.j2`...

I found the documentation bit [here](https://mlem.ai/doc/command-reference/build#examples) to see how I should using the `mlem build` after creating the builder `.mlem` file, it wasnt immediately obvious that it was different. But...

I'm not seeing a new version. On pypi I am still seeing mlem 0.2.5 as the latest release. https://pypi.org/project/mlem/#history ![image](https://user-images.githubusercontent.com/86629649/179237153-413a021c-c183-4216-b411-aae4e797af20.png) screenshot taken: 13:54:43 UTC

So I was able to install the new 2.7 version directly from gitub. ```pip install git+https://github.com/iterative/mlem.git@main``` But then on the docker build ``` mlem build S_model --load .mlem/builder/docker-builder.mlem``` I get...

I was able to get it running by modifying my `pre_install.j2` file to be ``` RUN apt-get update RUN apt-get install git -y RUN pip install git+https://github.com/iterative/mlem.git@main ```

You can use the option: `--cloud-image=ubuntu-os-cloud/ubuntu-2204-lts` For example: ``` ... - name: Deploy Runner on GCP env: REPO_TOKEN: ${{ secrets.PAT }} run: | cml runner launch \ --labels=my-label \ --single...