Error installing Nadine (Debian10/Django3.1/Python3.7.3) #460
Answered
by
jsayles
goodjobjus
asked this question in
Q&A
Replies: 1 comment
-
The requirements file has been replaced and I have updated the docs to reflect the shift to using pipenv. This is the step that installs all the libraries, like Django so it is very important. That is why you are getting a Django error when you ran setup.
…On Jan 28, 2021, 8:48 AM -0800, goodjobjus ***@***.***>, wrote:
Hello all!
It's been what seems like a century that I've used my coding skills - and so I'm taking baby steps with this install. However, have run into this issue right from the get go.
(nadine) ***@***.***:~/nadine# pip3 install -r requirements.txt
ERROR: Could not open requirements file: [Errno 2] No such file or directory: 'requirements.tx_t'
Not sure where this issue has come from nor how important it is to the install as it's a txt file. But then I continue to run into further issues:
(nadine) ***@***.***:~/nadine/nadine# ./manage.py setup
Traceback (most recent call last):
File "./manage.py", line 10, in
execute_from_command_line(sys.argv)
File "/root/nadine/local/lib/python2.7/site-packages/django/core/management/init.py", line 429, in execute_from_command_line
utility.execute()
File "/root/nadine/local/lib/python2.7/site-packages/django/core/management/init.py", line 379, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/root/nadine/local/lib/python2.7/site-packages/django/core/management/init.py", line 261, in fetch_command
klass = load_command_class(app_name, subcommand)
File "/root/nadine/local/lib/python2.7/site-packages/django/core/management/init.py", line 67, in load_command_class
module = import_module('%s.management.commands.%s' % (app_name, name))
File "/root/nadine/local/lib/python2.7/site-packages/django/utils/importlib.py", line 35, in import_module
import(name)
File "/root/nadine/nadine/nadine/management/commands/setup.py", line 11, in
from django.core.management.utils import get_random_secret_key
ImportError: No module named utils
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jsayles
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello all!
It's been what seems like a century that I've used my coding skills - and so I'm taking baby steps with this install. However, have run into this issue right from the get go.
(nadine) root@li508-231:~/nadine# pip3 install -r requirements.txt
ERROR: Could not open requirements file: [Errno 2] No such file or directory: 'requirements.tx_t'
Not sure where this issue has come from nor how important it is to the install as it's a txt file. But then I continue to run into further issues:
(nadine) root@li508-231:~/nadine/nadine# ./manage.py setup
Traceback (most recent call last):
File "./manage.py", line 10, in
execute_from_command_line(sys.argv)
File "/root/nadine/local/lib/python2.7/site-packages/django/core/management/init.py", line 429, in execute_from_command_line
utility.execute()
File "/root/nadine/local/lib/python2.7/site-packages/django/core/management/init.py", line 379, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/root/nadine/local/lib/python2.7/site-packages/django/core/management/init.py", line 261, in fetch_command
klass = load_command_class(app_name, subcommand)
File "/root/nadine/local/lib/python2.7/site-packages/django/core/management/init.py", line 67, in load_command_class
module = import_module('%s.management.commands.%s' % (app_name, name))
File "/root/nadine/local/lib/python2.7/site-packages/django/utils/importlib.py", line 35, in import_module
import(name)
File "/root/nadine/nadine/nadine/management/commands/setup.py", line 11, in
from django.core.management.utils import get_random_secret_key
ImportError: No module named utils
Beta Was this translation helpful? Give feedback.
All reactions