Does Julia have virtual virtual python?

Is there a Python-like virtual environment emulator for Julia where you can do development in a local virtual environment?

+15
julia-lang julia
source share
3 answers

There is Playground.jl

A package for managing julia sandboxes such as python virtualenv (with little influence from pyenv and virtualenvwrapper)

+14
source share

What happened if you have a separate installation of Julia in a different directory? Then you just need to set the JULIA_PKGDIR environment variable appropriately to configure the Julia you want to run.

0
source share

Currently, Julia has such things built into the package manager, they are called environments, and this is described here . It boils down to this: type package management repl by pressing ] , then the activate $dir switches to the environment described in $dir , then use the instantiate command to install the packages described in the environment.

0
source share

All Articles