Open doghousedean opened 8 years ago
I used the source code to compile it and was able to run it.
I am not familiar with node.js/npm to fix the problem directly
Hey there,
This seems to be a problem with the way we package up into a .deb file. I'm not very knowledgeable with the Debian packaging system but from what I know the dpkg command does not install dependencies.
A quick Google says you can run "apt-get install -f" after the dpkg command to install the required dependencies
We should add this to the README or something to clear this up :)
Yeah, dpkg doesn't know how to find dependencies, just knows how to install, track, and complain about it! On Raspbian I've been using gdebi to install debs with dependencies, from the gdebi-core package. Maybe there's a standard tool for Debian/Ubuntu/Mint that does this in a nice way? If so, a readme update would be great.
Joe
On 28 Sep 2016, at 18:18, Robert Wilson notifications@github.com wrote:
Hey there,
This seems to be a problem with the way we package up into a .deb file. I'm not very knowledgeable with the Debian packaging system but from what I know the dpkg command does not install dependencies.
A quick Google says you can run "apt-get install -f" after the dpkg command to install the required dependencies
We should add this to the README or something to clear this up :)
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.
I find the dependencies are not being install and apt is removing the package.
[dean:~/Downloads] 7s 1 $ sudo apt-get install -f
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
The following packages will be REMOVED
tide
The problem here seems to be that the Python sector of the Mint repositories does not include the python-cryptography package and depends on a package that python-cryptography is somehow in conflict with. I too tried to install the package with pip, but that doesn't communicate with debian dependency management world. When I attempted to install the package from the Ubuntu repository and install it with dpkg I got the conflict error.
I succesfully installed the python-cryptography on a raspbian system, but there apparently isn't a Tide .deb that is compatible with the particular arm architecture of the pi 3. Why does the package need to be architecture dependent?
Unable to install as a dependency is missing, I have tried to install the dep with pip but had no luck
sudo pip install cryptography
Can anyone help me?