-
Notifications
You must be signed in to change notification settings - Fork 19
Fully specify dependencies #36
Comments
Hello
This file already contains varlink etc... so normally when you install Concerning fcntl this module is a part of the stdlib so you don't need to install it and you can't find it on pypi, it's already available with your python installation. Normally an installation from git work fine too with pbr and in a similar way than a pypi install. Can you try this: $ # from your local clone repository
$ python -m pip install --user pbr
$ python setup.py install
$ # normally dependencies will be installed too... Let's me know if it work now. Also which python version are in use here? Can you give the commands that you use? Thanks :) |
@4383
And for me, |
OK, on a linux machine, with varlink,, pbr, psutil & python-dateutil installed, |
@h-vetinari The |
I realise a lot is in flux here with and after #25, but just mentioning that I tried to install from git, and the installation process does not trigger any dependencies to be pulled in (I'm sure that once published to PyPI this would work already a bit better), and the metadata seems to be missing some packages.
First error I got was missing package
varlink
, and while installing that, I got:So it seems
psutil
/python-dateutil
are specified, but not varlink, and neither the missing package error I got after installing all that.Not sure what else might be missing, since I cannot install fcntl from either pip or conda.
The text was updated successfully, but these errors were encountered: