Tagged Questions

3
votes
2answers
65 views

Where does Django store the project path?

I want to rename a project which I created with: django-admin.py startproject But after renaming the folder and all the references inside my project, I still can't get it to start. It says ...
3
votes
2answers
161 views

Django: What is `sys.path` supposed to be?

When developing a Django application, what is sys.path supposed to contain? The directory which contains the project, or the directory of the project, or both?
3
votes
4answers
6k views

How to add to the pythonpath in windows 7?

I have a directory which hosts all my django app. *"C:\My_Projects".* I want to add this directory to my pythonpath so I can call the apps directly. I have *right clicked My Computer > Properties > ...
2
votes
4answers
3k views

django import error - No module named core.management

Ok, I see plenty of these errors around. I have tried everything I know to do and have yet to figure this out. I am working on a development server running python 2.5 and Django 1.3. Django 1.3 was ...
1
vote
2answers
94 views

Importing a module which have the same name with a system module

My situation is similar to one in this question... The difference is, In our python/django project, we have a directory called utils, which keeps basic functions... Sometimes, we need to test some ...
1
vote
1answer
288 views

Defining PYTHONPATH for http requests on a shared server

I'm installing Django on Bluehost and one of the steps to install it was to install flup on their server. I did so and everything works great when I'm logged in via the SSH. However when I actually ...
0
votes
1answer
34 views

Django Management Command ImportError

I have problem with imported module into my qsl/management/commands/<customcommand>.py file. in fact, my app structure is : qsl/management/commands/ : dir for my management commands ...
0
votes
1answer
69 views

Including Git submodules on pythonpath when using virtualenv

I'm using Git for version control on a Django project. As much as possible, all the source-code that is not part of the project per se, but that the project depends on, is brought in as Git ...
0
votes
2answers
108 views

Import django doesn't work? Pythonpath?

I'm running Windows with Python 2.7 and (I believe) Django 1.0. I installed Django using the Bitnami Djangostack. The strange thing is, when I typed "import django" in python, I got this error: ...
0
votes
0answers
52 views

Using Shared App in Django with Multiple Sites

For example we have 'tagging' application and we use this application on multiple sites. These sites' names are X1 and X2. Can we do this? /home/username/packages/tagging /home/username/x1/ ...
0
votes
2answers
395 views

WIth PyCharm, why is the PYTHONPATH when running a Django project different from when running the manage.py syncdb task?

Shouldn't it be the same by default? If not, is there some way to fix this so that the same PYTHONPATH is used?
0
votes
2answers
397 views

PATH/PYTHONPATH is not working

I've made a separate directory for my django modules. I've added this directory to my PATH variable. I've also created a new PYTHONPATH variable, since it wasn't there. I've added modules to ...
0
votes
1answer
81 views

Django Projects & Apps

i am a django newbie, and trying to get my projects and apps in a directory on my desktop.. I need to add these directories to the python path so it knows where they live and can interact with ...
0
votes
2answers
1k views

Django (w PyCharm) & PYTHON PATH issue

I have purchased PyCharm and am trying to get things to work however I am encountering this issue.. Once I start a project everything works great... Now if I want a standalone app.. let's say at ...
0
votes
2answers
77 views

Django and mod_python config

My Django project is placed in /www/host1/htdocs/my/project, www and my are links to other actual folders. Apache has mod_python enabled. I have a .htaccess in project folder: SetHandler ...
0
votes
1answer
109 views

PYTHONPATH issue on a Production server and Namespace challenge

I'm really confused by some errors I'm getting as I'm trying to put an App into production. Everything works fine on the development machine, but I can't syncdb or enter the Django shell on the ...
0
votes
1answer
266 views

easy way of installing python apps without using PYTHON path or muli symlink in site-package

I didn't want to install python modules using easy install, symlinks in site-packages or PYTHONPATH. So, I am trying something that I do wants system wide, then any application installation is done ...
-1
votes
1answer
293 views

Django path issue (PyCharm IDE)

I have the issue below (I think this happened after upgrading PyCharm from 1.1 to 1.1.1) I am novice to python/django so I think its a simple path issue however suggestions are welcome.. Images: ...