Jupyter PythonPlot.jl

Jupyter PythonPlot.jl#

import PythonPlot as plt
using Random
Random.seed!(2022)
Random.TaskLocalRNG()
plt.plot(1:5, rand(1:6, 5))
Python: [<matplotlib.lines.Line2D object at 0x7f8c5b7a8050>]
import InteractiveUtils
InteractiveUtils.versioninfo()
Julia Version 1.12.0
Commit b907bd0600f (2025-10-07 15:42 UTC)
Build Info:
  Official https://julialang.org release
Platform Info:
  OS: Linux (x86_64-linux-gnu)
  CPU: 4 × AMD EPYC 7763 64-Core Processor
  WORD_SIZE: 64
  LLVM: libLLVM-18.1.7 (ORCJIT, znver3)
  GC: Built with stock GC
Threads: 2 default, 1 interactive, 2 GC (on 4 virtual cores)
Environment:
  JULIA_CI = true
  JULIA_CONDAPKG_OFFLINE = true
  LD_LIBRARY_PATH = /opt/hostedtoolcache/Python/3.13.7/x64/lib
  JULIA_PROJECT = /home/runner/work/template-juliabook/template-juliabook/Project.toml
  JULIA_DEPOT_PATH = /home/runner/.julia:/opt/hostedtoolcache/julia/1.12.0/x64/local/share/julia:/opt/hostedtoolcache/julia/1.12.0/x64/share/julia
  JULIA_CONDAPKG_BACKEND = Null
  JULIA_NUM_THREADS = 2
  JULIA_LOAD_PATH = @:@v#.#:@stdlib
  JULIA_PYTHONCALL_EXE = /opt/hostedtoolcache/Python/3.13.7/x64/bin/python
import Pkg
Pkg.status()
Status `~/work/template-juliabook/template-juliabook/Project.toml`
  [91a5bcdd] Plots v1.41.1
  [274fc56d] PythonPlot v1.0.6

This notebook was generated using Literate.jl.