Allowed file types:jpg, jpeg, gif, png, webm, mp4, swf, pdfMax filesize is 16 MB.Max image dimensions are 15000 x 15000. You may upload 5 per post.
New user? Start here ---> http://hydrusnetwork.github.io/hydrus/
Current to-do list has: 1,202 items
Current big job: finishing login and domain managers and overhauling the downloader
File: 5c7b897e2f4548c⋯.gif (293.52 KB, 242x333, 242:333, 1453562835648.gif)
Anonymous 10/31/16 (Mon) 05:43:18 4ccdd0 No.4348
Im using Zorin OS, its supposed to be linux based, but trying to install this tar.gz is confusing
Can I get some quick help?
Anonymous 10/31/16 (Mon) 06:40:50 4ccdd0 No.4349
Or is there a distro that just "works" with hydrus?
Anonymous 10/31/16 (Mon) 07:58:08 4ccdd0 No.4350
trying on ubuntu now, but nothing happens when I try to run "client" or "server"
Anonymous 10/31/16 (Mon) 11:04:09 4ccdd0 No.4352
Just get the source archive and run it with python.
cd into the main directory and do
./client.pyw
or
python2 client.py
Anonymous 10/31/16 (Mon) 14:49:57 4ccdd0 No.4355
wc@WC-Inspiron:~/Desktop/hydrus-229$ ./client.pyw
Traceback (most recent call last):
File "./client.pyw", line 17, in <module>
from include import HydrusConstants as HC
File "/home/wc/Desktop/hydrus-229/include/HydrusConstants.py", line 40, in <module>
import yaml
ImportError: No module named yaml
Anonymous 10/31/16 (Mon) 19:18:41 4ccdd0 No.4357
OP the easiest way is to get the executable.tar.gz and not the source.
This command will extract the tarball with all the file permissions intact.
tar xvf Hydrus.Network.229.-.Linux.-.Executable.tar.gz
Then open the directory.
cd 'hydrus network'
Then run the client.
./client
Anonymous 10/31/16 (Mon) 19:27:20 4ccdd0 No.4358
>>4355
Why the fuck are you using linux if you can't even use your brain? yaml is clearly a python module that hydrus depends on, and you don't have it installed.
To install modules for python2 you do
sudo pip2 install <module name>
Anonymous 10/31/16 (Mon) 21:01:48 4ccdd0 No.4359
>>4358
> Why the fuck are you using linux if you can't even use your brain?
Right back at you. Running pip as root and installing random modules into your system entirely untracked, creating potential conflicts with your package manager and other packages that depend on a specific version of that module. Genius! Let's run everything as sudo.
@OP
Figure out all of Hydrus' dependencies and create a package for your OS of choice and install it. Alternatively check if someone else has done it for you already. Alternatively create a Python virtualenv (using –user) and install all the dependencies for Hydrus and run it like that.
Anonymous 01/02/18 (Tue) 03:57:52 76c7b1 No.7600
I tried installing yaml with
sudo apt-get install python3-yaml
but it still keeps saying there's no module named yaml
Wish the linux install instructions were a bit more than "Just extract it!"
hydrus_dev ## Board Owner 01/03/18 (Wed) 23:42:32 fd2df9 No.7617
>>7600
Please try:
pip install pyyaml
And you might like to check:
https://hydrusnetwork.github.io/hydrus/help/running_from_source.html
For any others. Let me know how you get on!