Bjorn

Results 159 comments of Bjorn

I can't reproduce with python.org's python: ``` go|C:\> py -3.7 -V Python 3.7.4 go|C:\> py -3.7 -m pip -V pip 21.2.4 from C:\Users\bp.DATAKORTET\AppData\Local\Programs\Python\Python37\lib\site-packages\pip (python 3.7) go|C:\> py -3.7 -m pip...

I'm guessing you have an incompatible version of distlib or filelock?

I don't use jupyter, so apologies if this is a daft question, but is this a virtualenvwrapper command to just install one specific package in the created virtualenv? That seems...

Please don't use pictures of text... ever ;-) Your python scripts directory needs to be on your path (that is where virtualenvwrapper-win installs its .bat files and they need to...

`pydeps` has a use case for submodules (I need to know which modules to exclude). Sure I could do a prefix match, but the current stdlib-list implementation is very convenient...

I'm almost completely new to helm, so this might be a stupid question..., but why is there a windows executable of helm (https://github.com/helm/helm/releases) if we can't use it? I followed...

@marckhouzam Thanks for the info, I'm sure that will work (although I opted to just stay with helm 2 for now). Your answer seems to indicate that I'll need a...

Hi @emilienDespres , I think I got to the bibliography from this paper "On Algorithms for Enumerating All Circuits of a Graph" (https://epubs.siam.org/doi/10.1137/0205007). As far as I remember the algorithm...

It is not implemented in virtualenvwrapper-win. The implementation in the "mother"-project is here: https://bitbucket.org/virtualenvwrapper/virtualenvwrapper/src/d2e5303bbe6ab2f33d318fadb71bc3162108e4cc/virtualenvwrapper.sh?at=master&fileviewer=file-view-default#virtualenvwrapper.sh-948 Besides checking inputs and calling hooks, all it does is call `virtualenv-clone` (https://pypi.python.org/pypi/virtualenv-clone), which seems to...

@spapas your solution is probably useful as-is, so go ahead with the PR. I see that the *nix virtualenvwrapper does a bit more. It is called like this: ``` VIRTUALENVWRAPPER_PROJECT_CD=$cd_after_activate...