Is there a Python-like virtualenv environment simulator for Julia where one can do development in a local, virtual environment?
Nowadays Julia has this kind of thing built into it's package manager, they're called environments and it's described here.
Installing virtualenv If you are using Python 3.3 or newer, the venv module is the preferred way to create and manage virtual environments. venv is included in the Python standard library and requires no additional installation.
Currently (julia 1.2) is able to manage virual environments via it's builtin Pkg
standard library module:
julia> ] (v1.2) pkg> activate tutorial [ Info: activating new environment at `/tmp/tutorial/Project.toml`. (tutorial) pkg> (tutorial) pkg> status Status `/tmp/tutorial/Project.toml` (empty environment) (tutorial) pkg> add Example ... (tutorial) pkg> status Status `/tmp/tutorial/Project.toml` [7876af07] Example v0.5.1
There is Playground.jl
A package for managing julia sandboxes like python's virtualenv (with a little influence from pyenv and virtualenvwrapper)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With