加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
InstallJAC2.bash 414 Bytes
一键复制 编辑 原始数据 按行查看 历史
OpenJAC 提交于 2021-09-16 11:35 . Corrected test files + updated README.
#!/bin/bash
tput bold && tput setaf 6; echo 'Downloading and installing julia'
tput sgr0
sudo snap install julia --classic
tput bold && tput setaf 6; echo 'Installing jupyter'
tput sgr0
sudo apt-get install jupyter
tput bold && tput setaf 6; echo 'Installing JAC and its dependencies'
tput sgr0
julia -e 'using Pkg; Pkg.add("PyPlot"); Pkg.add("IJulia"); Pkg.add(url="https://github.com/OpenJAC/JAC.jl");'
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化