grahamgill

Results 7 comments of grahamgill

To get around this problem I modified `julia_py_executable` to check the `/bin` folder before checking the standard system scripts folder, since by default `python -m pip install --user ...` puts...

> The best answer I think means getting to know [alternate installation schemes](https://docs.python.org/3/install/index.html#alternate-installation) more intimately. Maybe use `sysconfig.get_scheme_names()` to provide the schemes to check and use `sysconfig.get_paths("scripts",scheme)` for the appropriate...

The link at present is NSFW and could be a security risk - redirects to a porn site.

The link is still available in the internet archive, e.g. https://web.archive.org/web/20180614100813/https://www.computist.xyz/2018/06/sparse-sets.html

It really helps to say what you did try. However I had a similar problem recently and posted [a reply to your question over on discourse.julialang.org](https://discourse.julialang.org/t/xlsx-cell-format/113975/3?u=graham_gill).

Interestingly, in this example ```julia function test_this() local u local v::Int try u = 1 v = 2 catch @warn "Unexpected!" end v end function test_that() local x local y::Int...

Some months have passed, so I hope this still can help. I came across your comment while looking for answers to how to apply styles to cells using `XLSX.jl`. The...