Skip to content

Commit 56c3455

Browse files
authored
Clarify startup process (#78)
Need to activate and instantiate, as well as no need to install pluto since it is already in the environment.
1 parent 367515d commit 56c3455

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,15 @@ If you are new to Julia or reinforcement learning, you can preview the
3030
For experienced users with the latest stable Julia properly installed:
3131

3232
1. Clone this project.
33-
1. Start the Julia REPL under the folder you created above.
34-
1. Install [Pluto.jl](https://github.com/fonsp/Pluto.jl)
35-
1. `] add Pluto`
36-
1. `using Pluto`
33+
1. Start the Julia REPL inside the project folder.
34+
1. Activate and instantiate the environment
35+
1. `import Pkg`
36+
2. `Pkg.activate(".")`
37+
3. `Pkg.instantiate()`
38+
3. Start [Pluto.jl](https://github.com/fonsp/Pluto.jl)
39+
1. `import Pluto`
3740
1. `Pluto.run()`
38-
1. Now you can see the Pluto page is opened in your browser. Paste
41+
4. Now you can see the Pluto page is opened in your browser. Paste
3942
`notebooks/Chapter01_Tic_Tac_Toe.jl` (or any other file under the `notebooks` folder) into
4043
the input box and click the `Open` button.
4144

0 commit comments

Comments
 (0)