Michael Lee

Results 25 comments of Michael Lee

Thanks @computerquip-streamlabs. I got this problem and solved by upgrading nvm with, ``` scoop install [email protected] ``` And then I could install node 8.7.0 with nvm.

@parkjooyoung99 Looks like similar to [your other issue](https://github.com/velocyto-team/velocyto.py/issues/337) created, installing from conda might help.

@parkjooyoung99 It seems to be related to compilers and there is an old issue about this, https://github.com/velocyto-team/velocyto.py/issues/53. You might want to try the steps suggested by the author.

@Nebudev Have you volume mount your folder ? Your docker should looks something like this, ``` docker run -p 3000:3000 -v `pwd`:/go/src/example-app --name="test" -d example-app ``` The `-v` is the...

I saw the discussion about Dockerfile in this issue, so I'm sharing my Dockerfile here too. Half of the file is copied from https://github.com/jupyter/docker-stacks/blob/master/base-notebook/Dockerfile and half of the file is...

I think I got this extension worked with 1.0.0 in https://github.com/interactivereport/cellxgene_VIP/issues/62. Hope it helps :)

@eusebiu You might want to give it a try to my Dockerfile I wrote for this plugin. I guess it will work with the latest commit. Instead of conda, you...

@FADHLyemen Other than adding Apache server, another way would probably be to modify the cellxgene `server/app/app.py` and add `HTTPBasicAuth` to get a simple password protection. You might want to have...

I got the same issue. I saw everyone mentioning anndata version and so I tried 0.7.5 and seems to be no issue for now.

@dr-boss @thangvc91 You need to encode the password in base64 first. You could update the crontab with `crontab -e` and replace your password with a base64 string of your password....