{"id":13505486,"url":"https://github.com/linuxdeploy/linuxdeploy-plugin-conda","last_synced_at":"2026-03-07T21:15:45.515Z","repository":{"id":33418466,"uuid":"146339074","full_name":"linuxdeploy/linuxdeploy-plugin-conda","owner":"linuxdeploy","description":"Python plugin for linuxdeploy. Sets up miniconda in an AppDir and installs user specified packages.","archived":false,"fork":false,"pushed_at":"2024-09-07T09:38:18.000Z","size":48,"stargazers_count":30,"open_issues_count":20,"forks_count":13,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-30T00:31:49.223Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/linuxdeploy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-08-27T18:40:50.000Z","updated_at":"2025-02-10T11:06:59.000Z","dependencies_parsed_at":"2022-07-16T07:46:50.643Z","dependency_job_id":"562c20f0-9cac-48d3-bc09-36804909cfba","html_url":"https://github.com/linuxdeploy/linuxdeploy-plugin-conda","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/linuxdeploy/linuxdeploy-plugin-conda","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxdeploy%2Flinuxdeploy-plugin-conda","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxdeploy%2Flinuxdeploy-plugin-conda/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxdeploy%2Flinuxdeploy-plugin-conda/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxdeploy%2Flinuxdeploy-plugin-conda/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/linuxdeploy","download_url":"https://codeload.github.com/linuxdeploy/linuxdeploy-plugin-conda/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxdeploy%2Flinuxdeploy-plugin-conda/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30231502,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T19:01:10.287Z","status":"ssl_error","status_checked_at":"2026-03-07T18:59:58.103Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T00:01:08.880Z","updated_at":"2026-03-07T21:15:45.486Z","avatar_url":"https://github.com/linuxdeploy.png","language":"Shell","funding_links":[],"categories":["AppImage developer tools"],"sub_categories":["Deployment tools for Python applications"],"readme":"# linuxdeploy-plugin-conda\n\nPython plugin for linuxdeploy. Sets up miniconda inside an AppDir, and installs user-specified packages.\n\n\n## Usage\n\n```bash\n# get linuxdeploy and linuxdeploy-plugin-conda (see below for more information)\n# configure environment variables which control the plugin's behavior\n\u003e export CONDA_CHANNELS=mychannel;myotherchannel CONDA_PACKAGES=mypackage;myotherpackage\n# call through linuxdeploy\n\u003e ./linuxdeploy-x86_64.AppImage --appdir AppDir --plugin conda --output appimage --icon mypackage.png --desktop-file mypackage.desktop\n```\n\nThere are many variables available to alter the behavior of the plugin. The current list can be obtained by calling the plugin with `--help`.\n\n\n### Cross-compiling/cross-building for `i[3-6]86` (Intel 32-bit)\n\nYou can cross-build native extensions for `i[3-6]86` by installing a 32-bit compiler and instructing distutils to use those.\n\nOn Debian, Ubuntu and other derivatives:\n\n```sh\nsudo apt-get install -y gcc-multilib g++-multilib\nexport ARCH=i386 CC=\"gcc -m32\" CXX=\"g++ -m32\" LDSHARED=\"gcc -m32 -shared -pthread\"\n```\n\nIf your system doesn't provide multilib compilers, wrappers like `i686-linux-gnu-gcc` also work fine.\n\n**Note:** It's very important to also overwrite `LDSHARED`!\n\nSee https://stackoverflow.com/a/47711430 for more information.\n\n\n## Customize caching behavior\n\nBy default, linuxdeploy-plugin-conda redownloads the miniconda installer on every execution. This is not an issue for most people, as the installers are only 50-80 MiB in size. However, it is usually not necessary to redownload the file every time, especially while developing scripts based on the conda plugin.\n\nTherefore, you can set a custom directory via the environment variable `$CONDA_DOWNLOAD_DIR`, into which downloaded files are stored then. The plugin makes use of some `wget` parameters to ensure that the file is only downloaded when it is incomplete (`-c`) or there is a newer version available (`-N`).\n\nExample:\n\n```bash\n\u003e export CONDA_DOWNLOAD_DIR=/my/own/directory\n\u003e ./linuxdeploy-x86_64.AppImage --plugin conda [...]\n[...]\nUsing user-specified download directory: /my/own/directory\n[...]\n```\n\nRelative paths work as well.\n\n\n\n## Example\n\nThis generates a working FreeCAD AppImage from Conda ingredients, including Qt and PyQt:\n\n```bash\nwget -c \"https://raw.githubusercontent.com/TheAssassin/linuxdeploy-plugin-conda/master/linuxdeploy-plugin-conda.sh\"\nwget -c \"https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage\"\nchmod +x linuxdeploy-x86_64.AppImage linuxdeploy-plugin-conda.sh\n\ncat \u003e freecad.desktop \u003c\u003c\\EOF\n[Desktop Entry]\nVersion=1.0\nName=FreeCAD\nName[de]=FreeCAD\nComment=Feature based Parametric Modeler\nComment[de]=Feature-basierter parametrischer Modellierer\nGenericName=CAD Application\nGenericName[de]=CAD-Anwendung\nExec=FreeCAD %F\nTerminal=false\nType=Application\nIcon=freecad\nCategories=Graphics;Science;Engineering;\nStartupNotify=true\nGenericName[de_DE]=Feature-basierter parametrischer Modellierer\nComment[de_DE]=Feature-basierter parametrischer Modellierer\nMimeType=application/x-extension-fcstd;\nEOF\n\nexport CONDA_CHANNELS=freecad CONDA_PACKAGES=freecad\n./linuxdeploy-x86_64.AppImage --appdir AppDir -i AppDir/usr/conda/data/Mod/Start/StartPage/freecad.png -d freecad.desktop --plugin conda --output appimage\n```\n\n## Projects using linuxdeploy-plugin-conda\n\n[Projects on GitHub that are using linuxdeploy-plugin-conda](https://github.com/search?l=Shell\u0026q=linuxdeploy-plugin-conda\u0026type=Code)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinuxdeploy%2Flinuxdeploy-plugin-conda","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flinuxdeploy%2Flinuxdeploy-plugin-conda","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinuxdeploy%2Flinuxdeploy-plugin-conda/lists"}