Re: tinymce no module exists

2019-08-07 Thread Mike Dewhirst
If you pip install *outside* a virtualenv it gets installed in the system python. If yours is purely a development machine you should pip uninstall django and anything else you see in the system python's site-packages directory to clean things up. Virtualenv theory is to only install stuff in

Re: tinymce no module exists

2019-08-05 Thread Kean
Hi Mike, thank you for the heip, I tried the relative path (in main/urls.py) you provided and it threw up errors. the existing reference I have seems stable, please see below path('tinymce/', include('tinymce.urls')), I have pip3 installed django-tinymce4-lite. What is odd, is if i run the

Re: tinymce no module exists

2019-08-04 Thread Mike Dewhirst
On 4/08/2019 9:52 pm, Kean wrote: Hi, Im trying to improve text field with a text editor in an app i created with django. Installed tinymce4-lite using pip3 into my virtaulenv. You need to pip3 install django-tinymce4-lite updates apps in system.py with 'tinymce' I don't use system.py.

Re: tinymce no module exists

2019-08-04 Thread Kean Dumba
Hi Sam, Thanks added tinymce to apps as recommended, but still getting the same error Best, K On Sun, 4 Aug 2019 at 15:06, Sam W wrote: > Add it to the installed apps > > INSTALLED_APPS = ( > ... > 'tinymce', > ) > > -- > You received this message because you are subscribed to the

tinymce no module exists

2019-08-04 Thread Sam W
Add it to the installed apps INSTALLED_APPS = ( ... 'tinymce', ) -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

tinymce no module exists

2019-08-04 Thread Kean
Hi, Im trying to improve text field with a text editor in an app i created with django. Installed tinymce4-lite using pip3 into my virtaulenv. updates apps in system.py with 'tinymce' mapped url in project settings 'path('tinymce/', include('tinymce.urls')), but still get error