Questions tagged [ijulia-notebook]

IJulia is a Julia-language backend combined with the Jupyter interactive environment (also used by IPython). This combination allows to interact with the Julia language using Jupyter/IPython's powerful notebook, which combines code, formatted text, math, and multimedia in a single document.

198 questions
1
vote
1 answer

IJulia for Julia v0.7

I tried building the latest (dev) version of Julia (v0.7) and want to use this kernel from Jupyter Notebook. When I tried running Pkg.add("IJulia") and building the module, the build failed. The errors I get are along the lines of Error:…
jjjjjj
  • 1,152
  • 1
  • 14
  • 30
1
vote
1 answer

Issues on using Plots package in Julia

I'm trying to use Plots package in Julia but I get an error message I don't fully understand. Using a Jupyter notebook I followed the canonic way to install and use the package with: Pkg.add("Plots") using Plots But after then I got this error…
Alejandro Carrera
  • 513
  • 1
  • 4
  • 14
1
vote
0 answers

Is it possible to pass state from Julia REPL to a Jupyter notebook via IJulia?

i'd like to open a Julia REPL in a terminal window, do some work, and then launch a Julia notebook via IJulia and notebook(). is there any direct way of passing variables and their values from the REPL, so they would be available in the notebook?…
ShpielMeister
  • 1,417
  • 10
  • 23
1
vote
1 answer

Julia os type of package or library?

I am new to Julia, and beginning to port some machine learning projects over to Julia. One thing I am missing is the python os library which can walk a directory path quite easily. I am googling around and looks like it doesn't exist in Julia…
Erik
  • 2,782
  • 3
  • 34
  • 64
1
vote
1 answer

Faster way to enter Markdown in IJulia Notebook

To enter Markdown in IJulia Notebook, I am currently using Esc to get to Command Mode and then Alt Gr and M to change the cell to Markdown. This feels cumbersome. Is there a faster way? I am using Ubuntu 16.04.
Samuel
  • 2,895
  • 4
  • 30
  • 45
1
vote
1 answer

ZeroMQ build issue in julia

When trying to install IJulia ( for Julia v0.6 ), I ran into a problem with installing/building ZeroMQ. So I tried ( as suggested by someone ) to rebuild ZeroMQ after restarting Julia. I tried this several times, both at home and at work ( maybe…
1
vote
1 answer

How to open a Julia Jupyter Qtconsole from an IJulia notebook?

With the IPython Jupyter notebook, I use the magic %qtconsole to open a Qtconsole connected to the same IPython kernel as the notebook. How does one do this with the IJulia notebook?
KartMan
  • 369
  • 3
  • 19
1
vote
1 answer

Installation Error for IJulia

I was able to successfully install Julia on my OS and I wanted to also access IJulia. This is from a Julia version 0.5.0 terminal. when I entered Pkg.add("IJulia") I received the following error: INFO: Installing miniconda ... …
user111937
  • 19
  • 5
1
vote
1 answer

How to help iJulia notebook find an externally compiled library

I am trying to run a compiled version of mxnet in an iJulia notebook, but when I execute the command using MXNet, I get the follow error: InitError: error compiling __init__: error compiling _populate_symbol_creator_cache!: error compiling…
ultradian
  • 581
  • 5
  • 20
1
vote
1 answer

GraphPlots Julia - How to add node labels?

I am currently in the process of plotting a directed graphs using Julia. After some time on the internet I came across the GraphPLot package which seems to be doing an ok job. However, I can't find out how to add node labels! Here is my code and…
h94
  • 155
  • 8
1
vote
1 answer

IJulia zoomable svg

I am using IJulia to display nifty things. Sometimes I have outputs such as SVGs that I would like to get a closer look at. Is there a way to wrap my output to an IJulia notebook cell such that I can use the standard mousewheel zoom and pan?
Mageek
  • 4,691
  • 3
  • 26
  • 42
1
vote
1 answer

IJulia package installation

Is there a way around the following error when trying to install IJulia package in Windows 7 Enterprise? julia> Pkg.add("IJulia") INFO: Initializing package repository C:\Users\user01\.julia\v0.4 INFO: Cloning METADATA from…
Clay
  • 2,584
  • 1
  • 28
  • 63
1
vote
0 answers

Install IJulia notebook on non-networked windows machine?

As a long-time user of Matlab for scientific computing, I am exploring Julia as an alternative but would like to use it within the Jupyter notebook. I have Julia-0.4.5 installed and functional, and previously downloaded the IJulia notebook…
Sharky
  • 11
  • 3
1
vote
1 answer

How can I subtract columns from a 2D array of JULIA?

I'm new to julia and I have a problem. I am working with Julia (Jupyter notebook) and I do not know how can I do column 3 - column 2 and write the result as a new column at the end of the matrix/array2D. I have tried this: newCol = array[(1:end),3]…
1
vote
2 answers

Display IFrame in IJulia Jupyter Notebook

Is there a way to display an IFrame in an IJulia Jupyter notebook? I am trying to use Plotly.jl with Jupyter. When plot is called it returns a URL linking to the generated graph. Using an IFrame should allow this to work…
BAR
  • 15,909
  • 27
  • 97
  • 185