Skip to content

Commit 522f4f6

Browse files
committed
Revert setup instructions to manual install for now
1 parent 7cd2bf0 commit 522f4f6

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,19 @@
44

55
FastAI.jl is inspired by [fastai](https://github.com/fastai/fastai), and is a repository of best practices for deep learning in Julia. Its goal is to easily enable creating state-of-the-art models. FastAI enables the design, training, and delivery of deep learning models that compete with the best in class, using few lines of code.
66

7-
As an example, training an image classification model from scratch is as simple as
7+
Install with
8+
9+
```julia
10+
using Pkg
11+
Pkg.add(Pkg.PackageSpec(url="https://github.com/FluxML/FastAI.jl"))
12+
```
13+
14+
or try it out with this [Google Colab template](https://colab.research.google.com/gist/lorenzoh/2fdc91f9e42a15e633861c640c68e5e8).
15+
16+
17+
## Example
18+
19+
Training an image classification model:
820

921
```julia
1022
using FastAI

docs/setup.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Setup
22

3-
FastAI.jl is a **Julia** package. You can download Julia from the [official website](http://localhost:8000/docs/setup.md.html). You can install FastAI.jl like any other Julia package using the REPL as follows (The package mode in the REPL can be entered by typing `]`).
3+
FastAI.jl is a **Julia** package. You can download Julia from the [official website](http://localhost:8000/docs/setup.md.html). You can install FastAI.jl like any other Julia package using the REPL as follows.
44

55
```julia
6-
pkg> add https://github.com/FluxML/FastAI.jl
6+
using Pkg
7+
Pkg.add(Pkg.PackageSpec(url="https://github.com/FluxML/FastAI.jl"))
78
```
89

910
**Plotting** FastAI.jl also defines [Makie.jl](https://github.com/JuliaPlots/Makie.jl) plotting recipes to visualize data. If you want to use them, you'll have to install and one of the Makie.jl backends [CairoMakie.jl](https://github.com/JuliaPlots/CairoMakie.jl), [GLMakie.jl](https://github.com/JuliaPlots/GLMakie.jl) or [WGLMakie.jl](https://github.com/JuliaPlots/WGLMakie.jl). For example:

0 commit comments

Comments
 (0)