How to install Julia in an anaconda environment? -


one of main features of anaconda is language agnostic stated in blog:

you can create environments of binary dependency tree (different versions of python, r, julia, etc.).

recently switched using virtualenv anaconda in python, curious try julia in anaconda environment. however, couldn't find instructions explicit enough install julia successfully. first, tried naively conda create -n julia-test julia. obviously, didn't work. found @ binstar.org julia package (version 0.3) code

conda install -c https://conda.binstar.org/wakari1 julia 

however, don't want install julia outside of specific virtual environment, changed to:

conda create -n julia-test -c https://conda.binstar.org/wakari1 julia 

it didn't throw errors failed start julia interpreter.

so, correct way of installing julia (0.2, preferably) in anaconda environment?

update

in recent blog post, continuum announced conda starting provide support r packages:

we bringing conda’s power r ecosystem building conda packages r , r packages on cran. support still preliminary, plan have full support full ecosystem in coming months.

maybe news julia , package ecosystem.

the blog post indicating conda general enough allow packages of type. there no packages julia yet (except 1 found in wakari channel, specific wakari).

building conda package julia , isn't difficult. building streamlined way convert julia packages conda packages bit more work.


Comments

Popular posts from this blog

java - How to specify maven bin in eclipse maven plugin? -

single sign on - Logging into Plone site with credentials passed through HTTP -

php - Why does AJAX not process login form? -