{"id":18847679,"url":"https://github.com/lkedward/quickstart-fortran","last_synced_at":"2025-04-14T08:10:00.883Z","repository":{"id":41841716,"uuid":"427707306","full_name":"LKedward/quickstart-fortran","owner":"LKedward","description":"An easy Windows installer for GFortran and the Fortran Package Manager","archived":false,"fork":false,"pushed_at":"2023-06-02T07:46:11.000Z","size":118,"stargazers_count":60,"open_issues_count":4,"forks_count":5,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-04-14T08:09:52.292Z","etag":null,"topics":["fortran","fortran-compiler","fortran-package-manager","gcc","gfortran","lapack","openblas","windows"],"latest_commit_sha":null,"homepage":"","language":"NSIS","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/LKedward.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2021-11-13T15:52:26.000Z","updated_at":"2025-02-13T08:27:00.000Z","dependencies_parsed_at":"2023-01-20T02:04:03.754Z","dependency_job_id":null,"html_url":"https://github.com/LKedward/quickstart-fortran","commit_stats":{"total_commits":47,"total_committers":1,"mean_commits":47.0,"dds":0.0,"last_synced_commit":"14a214a38e284aa4d3745e59d6a950899a40681e"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LKedward%2Fquickstart-fortran","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LKedward%2Fquickstart-fortran/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LKedward%2Fquickstart-fortran/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LKedward%2Fquickstart-fortran/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LKedward","download_url":"https://codeload.github.com/LKedward/quickstart-fortran/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248843867,"owners_count":21170492,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["fortran","fortran-compiler","fortran-package-manager","gcc","gfortran","lapack","openblas","windows"],"created_at":"2024-11-08T03:09:12.921Z","updated_at":"2025-04-14T08:10:00.849Z","avatar_url":"https://github.com/LKedward.png","language":"NSIS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Quickstart Fortran on Windows\n\n__An easy Windows installer and launcher for GFortran and the Fortran Package Manager__\n\nDownload the latest installer from the [__Releases Page__](https://github.com/LKedward/quickstart-fortran/releases)\n\n__Note: the installer takes a little while to startup due to it size, please be patient.__\n\n![quickstart-fortran-installer-screenshot](screenshot.png)\n\n## Features\n\n- Installs locally, __no adminstrator account__ required\n- Optionally add everything to the PATH for the local user\n- Includes:\n  - GCC-GFortran 12.2.0\n  - Fortran Package Manager v0.8.2\n  - Git for Windows v2.35.2 (_needed for fpm_)\n  - OpenBLAS (BLAS/LAPACK) v0.3.20-1\n  - GNU make v4.3\n- Extra utility commands\n  - `intel-setvars` to initialise the Intel OneAPI environment (if installed)\n  - `setup-stdlib` to build and install the latest version of the Fortran Standard Library \n\n## FAQ\n\n### Do I need to be administrator to install this?\n\nNo, the installer will install files to the `AppData` directory for the current user (`C:\\Users\\\u003cuser\u003e\\AppData\\Local`).\n\n### What is 'Add to path' and do I need it?\n\nThe 'Add to path' installer option will update the Windows PATH variable for the local user\nso that all the installed components are available to other applications.\nThis means that you can call `gfortran` or *fpm* from any command window or code editor/IDE.\n\nAlternatively, you may create an 'isolated' installation by unchecking the 'Add to path' option\nwhen installing. In this case, the installed programs are only made available when you use the\n'Quickstart Fortran' command line shortcut added to the desktop and start menu.\n\n### Can I use this with the Intel OneAPI Compiler?\n\nYes. The installation adds a helper command `intel-setvars` to setup the intel environment\n(this must be called each time you open a new command window.).\nThe helper script assumes OneAPI is installed at `C:\\Program Files (x86)\\Intel\\oneAPI`.\n\nAfter setting up the intel environment, you may use `ifort` with *fpm* by appending\n`--compiler ifort` to each *fpm* command or by setting the environment variable:\n\n```batch\n\u003e set FPM_COMPILER=ifort\n```\n\n### How can I install `stdlib` with this?\n\nFirst, run the installer, making sure that GFortran, fpm and Git are selected. After install,\nopen up the commmand window using the `Quickstart Fortran` shortcut on the desktop or in the start menu.\nAt the command window type `setup-stdlib` and press ENTER.\nThis will fetch the latest version of `stdlib` and install it to the local GFortran installation.\n\n__Note: The `setup-stdlib` script only works with the GFortran installation provided with this installer - it cannot\ncurrently detect existing GFortran or Intel fortran installations.__\n\n### How do I compile with BLAS/LAPACK?\n\nThe optimized OpenBLAS library is included with the GCC installation.\nUse the link flags `-llapack -lblas` or add the following to your `fpm.toml` file:\n\n```toml\n[build]\nlink = [\"lapack\", \"blas\"]\n```\n\n### How do I uninstall?\n\nThere is an uninstall program which may be launched from the start menu:\n\n```\nStart menu \u003e All programs \u003e Quickstart Fortran \u003e Uninstall\n```\n\n## About\n\nThe installer is built using the [Nullsoft Scriptable Install System](https://nsis.sourceforge.io/Download).\n\nSee [`quickstart-fortran-installer.nsi`](./quickstart-fortran-installer.nsi) for the configuration file and\n[`make_installer.yml`](./.github/workflows/make_installer.yml) for the Github actions workflow.\n\nThe GNU Compiler Collection v11.2.0\nis sourced from [WinLibs](https://winlibs.com/) based on the [MinGW-w64](https://www.mingw-w64.org/) project linked with MSVCRT.\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flkedward%2Fquickstart-fortran","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flkedward%2Fquickstart-fortran","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flkedward%2Fquickstart-fortran/lists"}