Loading Django into eclipse - python

When i point my django project to my python interpreter 3.2 in the new interpreter window and load files accordingly using the apply button, I hit next it says django is not in the python interpreter , do I need to install django inside the python interpreter??
when i create new project the option of django project is there and i can develop python projects fine, but eclipse won't let me go any further in django sayin django not found....pre requisite is that django is installed into the [ppython/jython/ironpython interpreter.
Any ideas to overcome this?

Django isn't Python 3 compatible yet. Experimental support is planned in 1.5. See https://docs.djangoproject.com/en/1.4/faq/install/ for more info.

Related

how to run(copy) django project from one system from another system?

i was working on a project on django using one of my system(win8) now i have changed my system.how do i continue working from where i left off on my new system(win7).i have a copy of the old django project file directory and nothing else,i have installed python and django on my new system and just copying that file directory and running python manage.py runserver on new system doesnt work(i wasnt hoping that it would work anyway) so what should i do?i am new in django and python so if anyone can explain me in detail.if my question arise any confusion please leave a comment.
django.db.models.loading was removed in Django 1.9. You need install the same version of Django on the old and new systems.
Django is pretty good about backwards compatibility, but you can't upgrade from one version to the next and assume that everything is going to work. You need to read through the release notes first (e.g 1.9), and make any required code changes.

Openshift Custom Cartridge with Python 3.4

Hi there I was recently developing an application on openshift.
I used the Python 3.3 Cartridge together with Django. And there is the problem. Because of the "old" version of python I get some exceptions. (Which is indeed a problem with the python version, because i tested it with python 3.3.2 on my local computer.)
My question is know is it possible to make an custom cartridge with pyhton 3.4? Or even update the existing python cartridge?
If yes, how does it work?
It might be possible to create a custom cartridge that has python 3.4. You would need to ssh into a gear on OpenShift Online (or use a compatible local RHEL or CentOS installation) to compile python 3.4 and it's dependencies, then you can use the Cartridge Developers Guide (https://docs.openshift.org/origin-m4/oo_cartridge_developers_guide.html) to create a cartridge that you can install it with.
You can also add it as a request at https://openshift.uservoice.com and get other users to vote on it.

Problems with python plugin for Intellij IDEA

I installed python plugin for Intellij IDEA.
IDEA version: 14.1.4
Plugin version: 4.5.141.1624
I am on Windows 7 and I have installed python to C:\Python34. Python is added to my PATH variable too.
When I edit python files on IDEA, it shows various errors in my python scripts. Following are some of them.
How can I get rid of these errors?
Here is my python console settings. I cannot set a python interpreter. There's no items in the dropdown.
I had the similar problem when I did not define SDK for project during creation of python project. Unfortunately I could not find any option in settings to do so. But I found some solution. Maybe it is little bit work around but it worked for me.
I just created new project by using File/New/Project
I selected Python type of project and click New to define Project SDK (Unfortunately I could not post picture with example I am pretty new in SO)
After that Idea configured itself in such way that in my old project I was also able to select this SDK. I tried to define such SDK by edition of settings file of IDEA but I was not able to do this in such way.
After defining few SDK It is also possible to change it for one of your module even if you did not do this on the beginning. You just need to:
open configuration file for module module_name.iml file
find there line <orderEntry type="inheritedJdk" />
change it to description of on of Python SDK for example
<orderEntry type="jdk" jdkName="Python 3.4.3 (F:\Python34\python.exe)" jdkType="Python SDK" />
I hope that this will help.
I am using:
InteliJ IDEA 14.1.4
Python Community Edition plugin version 4.5.2 141.106
And python 3.4.3

Django project won't work with Python Tools Visual Studio

I'm trying to get a Django project working with PTVS. The only reason I'm using it is because I have Azure credits and want to deploy there. In Visual Studio, I go to New Project > Python > Django. I chose "Add Virtual Environment". Here is the screenshot:
After the project is created, this is my solution explorer:
You can see django is definitely installed in the environment. But when I right-click on the app and go to Python > Sync DB, I get a bunch of errors says that
ImportError: No module named django.core.management. All the django package statements are underlined and they can't be imported. Any ideas?
When I go back to create another project and I do "Install into Python 2.7 directory," it works fine. So I don't understand why I can't use the virtual environment.
Go to your Projects folder and delete all the application/projects.
Clean the project directory. (By default this is the PATH: Documents/Visual Studio 2013/Projects
Close all the other IDE's and Programs that might be using your
python interpreter.
Set no-proxy in case you are using some proxy settings because it
will prevent Visual Studio from downloading and installing the required
packages.
You might prefer restarting your machine before performing these steps.
It worked for me. I had the same problem.
Below are two useful tutorials to walk you through the entire process.
PTVS 2.0 Beta: Creating a Django Website : A step by step guide
Django and MySQL on Azure with Python Tools 2.1 for Visual Studio

PyDev Auto-Complete Doesn't Work

Today I reinstalled my OS (Ubuntu 11.10) and installed Django and PyDev.
I ran one of my programs that import Django framework. It works, but PyDev doesn't detect my project, Django, Simple Django Captcha and most Python libraries.
What can I do to fix this problem?
Actually, I must say I configured my PYTHONPATH in PyDev, too.
New versions of PyDev should have Django integration. Try looking here.
Also, it might help defining those libraries as Forced Builtins. I had to use it to get PyQt auto-complete working.
I had the some problem when I upgraded my Ubuntu, it was fixed when i installed the aptana studio package fully.

Categories

Resources