pyforms

pyforms cannot import conf from pysettings

狂风中的少年 提交于 2019-12-13 17:36:38
问题 This is my python file: import pyforms import pyside from pyforms import BaseWidget from pyforms.Controls import ControlText from pyforms.Controls import ControlButton class SimpleExample1(BaseWidget): def __init__(self): super(SimpleExample1,self).__init__('Simple example 1') #Definition of the forms fields self._firstname = ControlText('First name', 'Default value') self._middlename = ControlText('Middle name') self._lastname = ControlText('Lastname name') self._fullname = ControlText('Full

Pyforms library: WinError5 Access is denied

放肆的年华 提交于 2019-12-11 11:10:33
问题 Pyforms library: WinError5 Access is denied. I have always used pip to install all libraries hassel free in the command window. But when I try to install pyforms library, I get the following error: Could not install packages due to EnvironmentError: [WinError 5] Access is denied: G:\\Anaconda_3\\Lib\site-packages\\sip.pyd. Consider using the '--user' option or check the permissions. I used both: pip install pyforms AND python -m pip install pyforms My system is windows 10 , 64 bit . Anaconda