[Journey] 1 million UVs/month in 12 months using AI generated content. Let's do it!

Status
Not open for further replies.
@Sartre how does your indexing chart look like in GSC? Does google deindex any of your AI content? If yes, what percentage?
 
Hi, I'm trying to install Nider in Python 3.6. The module seems to be installed correctly and I can find nider listed in pip list correctly, but if I try to run a test code like the one shared on their github frontpage here as an example https://github.com/pythad/nider
I get the following error ModuleNotFoundError: No module named 'nider.models'; 'nider' is not a package

But as said, it is installed correctly. And nider create an odd cache page in the location where it is run. Is there anything we specifically need to do/know in order to run this module in Python 3.6?

Thanks
 
Hi, I'm trying to install Nider in Python 3.6. The module seems to be installed correctly and I can find nider listed in pip list correctly, but if I try to run a test code like the one shared on their github frontpage here as an example https://github.com/pythad/nider
I get the following error ModuleNotFoundError: No module named 'nider.models'; 'nider' is not a package

But as said, it is installed correctly. And nider create an odd cache page in the location where it is run. Is there anything we specifically need to do/know in order to run this module in Python 3.6?

Thanks
are you on Windows or Linux/Mac?
 
python -m pip download nider==0.5.0 python -m pip install --no-deps -c constraints.txt nider==0.5.0 python -m pip install colorthief python -m pip install -r requirements.txt Problems? pip uninstall pillow, do these steps again.
 
python -m pip download nider==0.5.0 python -m pip install --no-deps -c constraints.txt nider==0.5.0 python -m pip install colorthief python -m pip install -r requirements.txt Problems? pip uninstall pillow, do these steps again.
Tried to run these commands, I get an error on command #2

Could not open requirements file: [Errno 2] No such file or directory: 'constraints.txt'
and #4
Could not open requirements file: [Errno 2] No such file or directory: 'requirements.txt'

Tried to pip uninstall pillow and do the steps again, same result.
If I try to run the example script I still receive the same error
 
Tried to run these commands, I get an error on command #2


and #4


Tried to pip uninstall pillow and do the steps again, same result.
If I try to run the example script I still receive the same error
create a file constraints.txt and put this in:
pillow>=9.0.0

skip the requirements.txt
 
create a file constraints.txt and put this in:
pillow>=9.0.0

skip the requirements.txt
Did this, now I get this message when I launch the second command

C:\Users\Administrator\Desktop\test>python -m pip install --no-deps -c constraints.txt nider==0.5.0
Collecting nider==0.5.0
Using cached https://files.pythonhosted.org/pack...28f064f2e339/nider-0.5.0-py2.py3-none-any.whl
Installing collected packages: nider
Successfully installed nider-0.5.0

but problem still persist, also the commands download Pillow-8.4.0 despite the instruction inside constraints.txt... maybe I missed something?
 
create a file constraints.txt and put this in:
pillow>=9.0.0

skip the requirements.txt
sorry, my bad, they weren't working ebcause I was trying to launch these command from the folder where I had the example script to run.
Running these commands from the root folder of python, now the script works! Thanks very much!
 
Doesn't work again, IDK why... I got an image correctly, left the pc for some hours, and now that I'm back I receive the same error again... also I noticed that pillo >9 is not compatible with python 3.6 https://pillow.readthedocs.io/en/stable/installation.html
this is why we're using the constraint. it works this way
 
ok thanks. btw I switched the system using my VPS instead of my home PC and had no problem there, works completely fine. Thanks very much for your support!
 
Great journey! Thanks for sharing with us.
May I know, are you still using these?
sentence_transformers
torch for ML
spacy for NLP

Can you please mention other packages you are using right now for your project?
 
Status
Not open for further replies.
Back
Top