python - How do I properly install suds-jurko? [duplicate] - python-3.x

This question already has answers here:
suds install error: no module named client
(8 answers)
Closed 7 years ago.
Let me just get this out of the way - I'm new to just about everything about modules. I can just about guarantee I'm going to say or ask something stupid.
To the point - I need to do some autotask API magic, and to do so I need to make use of suds-jurko (since I'm running Python 3.4 and suds is outdated).
I've installed it through py -m pip install suds_jurko which gave me an .egg, which I used easy_install on. Still, no sign of suds_jurko to be found.
Why can't I import suds-jurko, and why does it not show up in the help>>modules of IDLE?

Look here. The import statement for suds-jurko is still import suds.

Related

Is python 3.8.7 not anymore backward compatible with python 3.4? [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 1 year ago.
Improve this question
When I run those lines in Python 3.4 everything is fine but when I run with Python 3.8.7 I get these errors:
from idlelib.ColorDelegator import *
ModuleNotFoundError: No module named 'idlelib.ColorDelegator'
or in Tkinter
self.s.configure("My.Vertical.TScrollbar", *self.s.configure("Vertical.TScrollbar"))
TypeError: configure() argument after * must be an iterable, not NoneType
I had also issues installing 3.9.1 that is the reason why I was forced to install 3.8.7. Even though I checked "Add Python to path" it failed to add it. I mean I'm not surprised look only at this window:
I have no idea what is bellow Includes IDLE, pip and documentation because you can't scroll it.
A simple Google search found: https://github.com/jmmcd/ponyge/issues/7
The following works in Python 3.6 and later. I don't have 3.4 installed...
from idlelib.colorizer import ColorDelegator
A simple answer would be
NOT everything is backward compatible from python 3.4 -> python 3.8.7
Things like tkinter and other libs that are not a part of standard library or python itself are not being counted as backward compatible
So in fact Python is backward compatible from python 3.4 -> python 3.8.7

Can anyone tell me how to install collections package in python 3.9? [duplicate]

This question already has an answer here:
how to install collections in python 3.6 [closed]
(1 answer)
Closed 2 years ago.
I am getting below error while installing collection library in python 3.9
ERROR: Could not find a version that satisfies the requirement collections (from versions: none)
ERROR: No matching distribution found for collections
collections isn’t a PyPI package that you install with pip.
It’s a module in the standard library that’a always present: https://docs.python.org/3/library/collections.html
You just have to import it.

How do i pip install pyinstaller in pydroid 3 [duplicate]

This question already has answers here:
PyInstaller, spec file, ImportError: No module named 'blah'
(3 answers)
Pyinstaller Unable to access Data Folder
(1 answer)
Python - pygame error when executing exe file
(3 answers)
Closed 2 years ago.
I have recently been making a game on pydroid 3 with pygame and I am trying to turn it into a game you can download and play as an apk or exe file
A YouTube video told me that I had to use pyinstaller to turn it into an a game that people can download so I tried pip installing it but it said
Failed to build wheel for pyinstaller
After that I tried pip3 installing pyinstaller but it said the same thing after that I tried using the pip function that comes with the app but it said
Looking in indexes:http://repo.local
Error:PyInstaller does not support Android yet
And the only device I have to program is an android tablet and all the other Ide's i've tried don't support pygame so I don't really know what to do

Installing Pygame with "Requirement already satisfied" [duplicate]

This question already has answers here:
Cannot install pygame in Pycharm
(1 answer)
pycharm doesn't recognize pygame package
(2 answers)
Closed 2 years ago.
I am trying to install Pygame using Pycharm, but keep getting an error when downloading. It suggests running the command in the terminal, but when I do that it says:
Requirement already satisfied: pygame in /Library/Python/2.7/site-packages (1.9.6)
I don't understand what I am supposed to do at this point so some help would be really nice.

Spyder doesn't recognise my library, ImportError: No module named 'numdifftools' [duplicate]

This question already has answers here:
Adding a module (Specifically pymorph) to Spyder (Python IDE)
(13 answers)
Closed 6 years ago.
I have installed numdifftools and it works in Python shell. But in Spyder, I get this error which don't know how to solve!
ImportError: No module named 'numdifftools'
on the IPython console within spyder allows you to use pip. So, in the example, you could do:
[1] !pip install numdifftools
All possible answers :
1.For any libraries that you want to add that aren't included in the default search path of spyder (whatever that is) you need to go into Tools and add a path to EACH library via the PYTHONPATH manager. You'll then need to update the module names list from the same menu and restart spyder before the changes take effect.
2.Find the location of a module in Terminal:
$ python #open python
>>> import numdifftools #import a module
numdifftools #get the location of the package
Copy-paste the module folder to the 'Spyder.app/Contents/Resources/lib/python2.7'
Relaunch Spyder.app
3.Try install from ipython(within spyder) : !pip install numdifftools
Refer : similar question

Resources