2

I want to use pyforms to prepare a simple python based program and have been trying to install and use it with no luck.

When I run:

import pyforms
from   pyforms          import BaseWidget
from   pyforms.Controls import ControlText
from   pyforms.Controls import ControlButton

All I get is a Traceback error in the terminal and:

from pysettings import conf;
ImportError: cannot import name 'conf'

I'm using pysettings 1.90 and pyforms 0.1.7.3

I've uninstalled and reinstalled several times with no luck and have been using python3.4. Can anyone help?

jrodB
  • 21
  • 3
  • Please include full traceback and links to all 3rd party libraries used. – Łukasz Rogalski Dec 12 '16 at 07:14
  • Sorry, Traceback: – jrodB Dec 12 '16 at 11:06
  • Sorry cant make the formatting better!, Traceback: `Traceback (most recent call last): File "C:\Programming\pyforms3.py", line 2 in import pyforms File "C:\Python34\lib\site-packages\pyforms\__init__.py", line 4, in from pysettings import conf; ImportError: cannot import name 'conf' ` links:pyforms [link](http://pyforms.readthedocs.io/en/latest/) pysettings [link](https://pypi.python.org/pypi/PySettings) – jrodB Dec 12 '16 at 11:12
  • Possible duplicate of [pyforms cannot import conf from pysettings](https://stackoverflow.com/questions/41216740/pyforms-cannot-import-conf-from-pysettings) – WhatsThePoint Dec 08 '17 at 10:16

1 Answers1

2

You will need to download and install pysettings from https://github.com/UmSenhorQualquer/pysettings/tree/92bde8c680bc0a00ae97cc09bd4dab1b697d6ed2

The original pysettings will not work.