- We've confirmed my Mac machine succeeded to build Julia from source at master (2020/08/15)
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.6.0-DEV.646 (2020-08-15)
_/ |\__'_|_|_|\__'_| | Commit d47f7d0827 (1 day old master)
|__/ | |
- We've confirmed our
Makefile
works fine On my Ubuntu 16.04 PC
$ cd path/to/this/README.md
$ make
# just wait
$ make install # you may need to add `sudo`
- It will create directory named
~/julia_dev
. - You can call the latest julia via
~/julia_dev/bin/julia
- Or simply set alias on
~/.bash_profile
for example :
alias jldev="$HOME/julia_dev/bin/julia"
make reset