David Doblas Jiménez
David Doblas Jiménez
@bschulth I have installed the extension on my Jupyterlab server instance (3.1.9) and it works out-of-the-box
Thanks for replying back @j0k3r . I just, naively, moved the directory created by wallabag. When I instantiate newly the image, docker created a directory for the new instance of...
Did the replacement but it didn't work :( Anyway, thanks for the suggestion
It didn't work for me (I have tha 2.0.0-alpha10) Adding a "userconf" file with the content @LeLunZ said above and an empty "ssh" file, when I try to ssh using...
Yes, exactly what you posted and still can't ssh :(
After three attempts to log in, I get the "Permission denied" error and I was kicked out of the ssh session :shrug:
Is it then your master branch compatible with Python 3.6? Or should I use the one from @sbyrnes321?? Thanks in advance for this great package!
Thanks for the reply. I updated to v1.3 and the problem still persists. The output you requested is the following: ` ❯ optimus-manager --status Config parsing : error in option...
This is how I implemented to have such a behavior: ``` class MyEnumerate_indexed: def __init__(self, data, start=0): self.data = data self.index = start def __iter__(self): return MyEnumerateIterator(self.data, self.index) class MyEnumerateIterator:...
@fabienthiombiano I solved putting: ``` words = input[i:i+n] # check if any of the words forming the n-gram is "common" if isCommon(words): continue ``` in the ngrams function, after the...