Simon P de Szoeke

Results 16 comments of Simon P de Szoeke

Or as a function, ```npdt64_to_dt(time) = Nanosecond(time.astype(np.int64)) + DateTime(1970)``` which can be iterated over the elements of Arrays with dot syntax.

I had to do some tugging to get GR to compile, after which I got this PyPlot error. The Conda commands worked.

+1 for vector indexing (and stopgap warnings that it's not supported yet). In Julia 0.5.0 or 0.5.1 it seems to work for an interpolator from `interpolate()`, but not one from...

I have started managing my python packages outside of julia with mamba. I think, then, mamba is managing environment of the shell from which I launch julia or python. Is...

I am deleting `.julia/conda` and reinstalling with `ENV["PYTHON"]=""`. But `using PyCall; PyCall.pyimport("numpy")` hangs. Is there any other configuration I need to expunge?

For me ```julia abspath(first(DEPOT_PATH), "conda", "deps.jl") $HOME/.julia/conda/deps.jl ``` is removed by recursively wiping .julia/conda. @mkitti > @deszoeke I recommend starting a new issue. Is the issue of starting conda fresh...

I do not have a ~/.julia/packages/deps.jl

Interesting. There are lots of residues in packages/PyCall/xxxxx/deps/deps.jl, but none that implicate mamba: ``` $ find ~/.julia/packages/PyCall -iname deps.jl ~/.julia/packages/PyCall/BD546/deps/deps.jl ~/.julia/packages/PyCall/twYvK/deps/deps.jl ~/.julia/packages/PyCall/7a7w0/deps/deps.jl $ cat ~/.julia/packages/PyCall/BD546/deps/deps.jl const python = "~/.julia/conda/3/bin/python" const...

I resolved my problem with two steps. 1. I commented out the conda setup that mamba adds to my `.bash_profile`. It exports a mess of environment variables like CONDA_EXE, prepends...

I recently installed mamba (outside julia), and it appears julia PyCall is using it: ``` using PyCall os = pyimport("os") os.environ ... , 'CONDA_PYTHON_EXE': '$HOME/mambaforge/bin/python' ``` I had installed anaconda...