Jupyter PythonPlot.jl

import PythonPlot as plt
using Random
Random.seed!(2022)
    CondaPkg Found dependencies: /home/runner/.julia/packages/CondaPkg/lKlVY/CondaPkg.toml
    CondaPkg Found dependencies: /home/runner/.julia/packages/PythonCall/5WGSP/CondaPkg.toml
    CondaPkg Found dependencies: /home/runner/.julia/packages/PythonPlot/oS8x4/CondaPkg.toml
    CondaPkg Resolving changes
             + libstdcxx
             + libstdcxx-ng
             + matplotlib
             + openssl
             + python
    CondaPkg Initialising pixi
             │ /home/runner/.julia/artifacts/4ae17cee0bd922f66b2c72bf2f01c22481a5ec19/bin/pixi
             │ init
             │ --format pixi
             └ /home/runner/work/template-quarto-julia-matrix/template-quarto-julia-matrix/.CondaPkg
✔ Created /home/runner/work/template-quarto-julia-matrix/template-quarto-julia-matrix/.CondaPkg/pixi.toml
    CondaPkg Wrote /home/runner/work/template-quarto-julia-matrix/template-quarto-julia-matrix/.CondaPkg/pixi.toml
             │ [dependencies]
             │ openssl = ">=3, <3.6"
             │ libstdcxx = ">=3.4,<15.0"
             │ libstdcxx-ng = ">=3.4,<15.0"
             │ matplotlib = ">=1"
             │ 
             │     [dependencies.python]
             │     channel = "conda-forge"
             │     build = "*cp*"
             │     version = ">=3.10,!=3.14.0,!=3.14.1,<4"
             │ 
             │ [workspace]
             │ name = ".CondaPkg"
             │ platforms = ["linux-64"]
             │ channels = ["conda-forge"]
             │ channel-priority = "strict"
             └ description = "automatically generated by CondaPkg.jl"
    CondaPkg Installing packages
             │ /home/runner/.julia/artifacts/4ae17cee0bd922f66b2c72bf2f01c22481a5ec19/bin/pixi
             │ install
             └ --manifest-path /home/runner/work/template-quarto-julia-matrix/template-quarto-julia-matrix/.CondaPkg/pixi.toml
✔ The default environment has been installed.
Random.TaskLocalRNG()
plt.plot(1:5, rand(1:6, 5))
Python: [<matplotlib.lines.Line2D object at 0x7fc5d3adc440>]

This notebook was generated using Literate.jl.

Back to top