All Projects → JuliaLang → Julia

JuliaLang / Julia

Licence: other
The Julia Programming Language

Programming Languages

julia
2034 projects
c
50402 projects - #5 most used programming language
C++
36643 projects - #6 most used programming language
scheme
763 projects
Makefile
30231 projects
LLVM
166 projects

Projects that are alternatives of or similar to Julia

Oq Engine
OpenQuake's Engine for Seismic Hazard and Risk Analysis
Stars: ✭ 207 (-99.45%)
Mutual labels:  hacktoberfest, hpc
LatticeQCD.jl
A native Julia code for lattice QCD with dynamical fermions in 4 dimension.
Stars: ✭ 85 (-99.77%)
Mutual labels:  hpc, julia-language
Reprozip
ReproZip is a tool that simplifies the process of creating reproducible experiments from command-line executions, a frequently-used common denominator in computational science.
Stars: ✭ 231 (-99.38%)
Mutual labels:  hacktoberfest, science
Sci
[MIRROR] Gentoo Science Overlay
Stars: ✭ 127 (-99.66%)
Mutual labels:  hacktoberfest, science
Ucx
Unified Communication X (mailing list - https://elist.ornl.gov/mailman/listinfo/ucx-group)
Stars: ✭ 471 (-98.74%)
Mutual labels:  hacktoberfest, hpc
Code Is Science
Scientific code needs to be open source and peer reviewed
Stars: ✭ 133 (-99.65%)
Mutual labels:  hacktoberfest, science
Awesome Datascience
📝 An awesome Data Science repository to learn and apply for real world problems.
Stars: ✭ 17,520 (-53.28%)
Mutual labels:  hacktoberfest, science
Ompi
Open MPI main development repository
Stars: ✭ 1,221 (-96.74%)
Mutual labels:  hacktoberfest, hpc
Poliastro
poliastro - 🚀 Astrodynamics in Python
Stars: ✭ 462 (-98.77%)
Mutual labels:  hacktoberfest, science
Easybuild
EasyBuild - building software with ease
Stars: ✭ 321 (-99.14%)
Mutual labels:  hacktoberfest, hpc
Freud
Powerful, efficient particle trajectory analysis in scientific Python.
Stars: ✭ 118 (-99.69%)
Mutual labels:  hacktoberfest, science
Obspy
ObsPy: A Python Toolbox for seismology/seismological observatories.
Stars: ✭ 756 (-97.98%)
Mutual labels:  hacktoberfest, science
Tardis
TARDIS - Temperature And Radiative Diffusion In Supernovae
Stars: ✭ 112 (-99.7%)
Mutual labels:  hacktoberfest, science
Easybuild Easyconfigs
A collection of easyconfig files that describe which software to build using which build options with EasyBuild.
Stars: ✭ 200 (-99.47%)
Mutual labels:  hacktoberfest, hpc
Futhark
💥💻💥 A data-parallel functional programming language
Stars: ✭ 1,641 (-95.62%)
Mutual labels:  hacktoberfest, hpc
Homebrew Bio
🍺🔬 Bioinformatics formulae for the Homebrew package manager (macOS and Linux)
Stars: ✭ 237 (-99.37%)
Mutual labels:  hacktoberfest, science
Sympy
A computer algebra system written in pure Python
Stars: ✭ 8,688 (-76.83%)
Mutual labels:  hacktoberfest, science
Geopm
Global Extensible Open Power Manager
Stars: ✭ 57 (-99.85%)
Mutual labels:  hacktoberfest, hpc
SciCompforChemists
Scientific Computing for Chemists text for teaching basic computing skills to chemistry students using Python, Jupyter notebooks, and the SciPy stack. This text makes use of a variety of packages including NumPy, SciPy, matplotlib, pandas, seaborn, NMRglue, SymPy, scikit-image, and scikit-learn.
Stars: ✭ 65 (-99.83%)
Mutual labels:  science, scientific
Openml
Open Machine Learning
Stars: ✭ 489 (-98.7%)
Mutual labels:  hacktoberfest, science

Documentation: Documentation

Continuous integration: Continuous integration (master)

Code coverage: Code coverage (Coveralls) Code coverage (Codecov)

The Julia Language

Julia is a high-level, high-performance dynamic language for technical computing. The main homepage for Julia can be found at julialang.org. This is the GitHub repository of Julia source code, including instructions for compiling and installing Julia, below.

Resources

New developers may find the notes in CONTRIBUTING helpful to start contributing to the Julia codebase.

External Resources

Binary Installation

If you would rather not compile the latest Julia from source, platform-specific tarballs with pre-compiled binaries are also available for download. The downloads page also provides details on the different tiers of support for OS and platform combinations.

If everything works correctly, you will see a Julia banner and an interactive prompt into which you can enter expressions for evaluation. You can read about getting started in the manual.

Note: Although some system package managers provide Julia, such installations are neither maintained nor endorsed by the Julia project. They may be outdated, broken and/or unmaintained. We recommend you use the official Julia binaries instead.

Building Julia

First, make sure you have all the required dependencies installed. Then, acquire the source code by cloning the git repository:

git clone https://github.com/JuliaLang/julia.git

By default you will be building the latest unstable version of Julia. However, most users should use the most recent stable version of Julia. You can get this version by changing to the Julia directory and running:

git checkout v1.7.0

Now run make to build the julia executable.

Building Julia requires 2GiB of disk space and approximately 4GiB of virtual memory.

Note: The build process will fail badly if any of the build directory's parent directories have spaces or other shell meta-characters such as $ or : in their names (this is due to a limitation in GNU make).

Once it is built, you can run the julia executable after you enter your julia directory and run

./julia

Your first test of Julia determines whether your build is working properly. From the UNIX/Windows command prompt inside the julia source directory, type make testall. You should see output that lists a series of running tests; if they complete without error, you should be in good shape to start using Julia.

You can read about getting started in the manual.

Detailed build instructions, should they be necessary, are included in the build documentation.

Uninstalling Julia

Julia does not install anything outside the directory it was cloned into. Julia can be completely uninstalled by deleting this directory. Julia packages are installed in ~/.julia by default, and can be uninstalled by deleting ~/.julia.

Source Code Organization

The Julia source code is organized as follows:

Directory Contents
base/ source code for the Base module (part of Julia's standard library)
stdlib/ source code for other standard library packages
cli/ source for the command line interface/REPL
contrib/ miscellaneous scripts
deps/ external dependencies
doc/src/ source for the user manual
src/ source for Julia language core
test/ test suites
usr/ binaries and shared libraries loaded by Julia's standard libraries

Terminal, Editors and IDEs

The Julia REPL is quite powerful. See the section in the manual on the Julia REPL for more details.

On Windows we highly recommend running Julia in a modern terminal, such as Windows Terminal from the Microsoft Store.

Support for editing Julia is available for many widely used editors: Emacs, Vim, Sublime Text, and many others.

For users who prefer IDEs, we recommend using VS Code with the julia-vscode plugin. For notebook users, Jupyter notebook support is available through the IJulia package, and the Pluto.jl package provides Pluto notebooks.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].