How to install turtlegraphics in python - python

I'm trying my hands on Turtle but I can't get the module installed.
I have searched a lot and people seems to imply that it is included in the Python
standard library with Tkinter but this doesn't seem to be the case for me.
when I do:
import Tkinter
everything seems ok. But when I try
t1 = Turtle()
I get the error
NameError: name 'Turtle' is not defined
As per the tutorial I'm suppose to import like this:
from turtlegraphics import Turtle
But no matter what I've tried I cant find how I can get the library installed.

You need to import it from the turtle module.
from turtle import Turtle
t1 = Turtle()
t1.forward(100)

Try to check within the library files whether there is a file called turtle in it . I had the same problem and i found the library file and opened it. So check it and see if it will fix your problem. Most probably turtle library file will be in Lib folder.

Nothing here worked for me. This is what I did: I checked what configuration I had (in the upper right hand corner). I changed it so it was the python version that ran through the project and not just plain python. Then you also have to go to script path (also a setting in the configuation) and set it to the .py that you are working on :)

hey all of you guys just check importing that module ,you dont get any errors its already in standard libraray

Related

import error __init__.py how to fix this error

I am kind of an amateur to Pycharm.
Been trying to work with the Turtle package. It is clearly installed in the Pycharm,
but every time I import and run it, I see the below error.
I have been searching the net and all I could see was to check the interpreter and mine is the latest Python (3.10).
It will be really helpful if someone can suggest a remedy to this, this is happening with all the packages in fact.
Thank you!
from turtle import Turtle
ImportError: cannot import name 'Turtle' from 'turtle' (/usr/local/lib/python3.10/site-packages/turtle/__init__.py)

How do I get a particular python module to work in Anaconda?

I don't have a lot of programming experience, so please try to keep answers relatively noob-friendly! :) Basically, I have a Python...library, I guess? or module? that I need to run in Spyder through Anaconda. This seems to be a very obscure module called PySPM, used for analyzing scanning probe microscopy data, that I received from a colleague my lab collaborates with. When I try to run a piece of software which uses this module, it gives this error:
ImportError: No module named 'PySPM.io'
The code itself which triggers this reads as follows:
from os import path
from PySPM.io.Translators.Utils import uiGetFile
from PySPM.io.Translators.BEPSndfTranslator import BEPSndfTranslator
from PySPM.io.Translators.BEodfTranslator import BEodfTranslator
from PySPM.analysis.BESHOFitter import BESHOFitter
The first line that says from PySPM.io.Translators.Utils import uiGetFile is what's triggering the error. I'm really stuck scratching my head here. What's going on and how can I solve it?
Pycroscopy is the (thoroughly) reorganized version of PySPM.
#Martensite try:
$ pip install pycroscopy

Beginner unable to run pygame

I have just begun using pygame and am struggling to get anything running at all, I have reduced my code to these few lines:
import pygame
pygame.init()
size = (700, 500)
screen = pygame.display.set_mode(size)
but any code taken from working projects fails just as easily
Running this through shell causes it it to briefly open before crashing which from research IS normal?
But running it through the Python icon causes the prompt to open and close in an infinitesimal amount of time, I really don't know much about prompts so maybe it needs to be reconfigured or the PATH altered?
From research I've found that I'm meant to use a batch file but this just produces the error:
Attribute Error: 'module' object has no attribute 'display'
I'm sure my problem is straightforward and repetitive but I'm struggling to work out where even to begin in looking for advice myself, any helps appreciated thanks!
pygame.display is a module on its own, so you need to import it:
import pygame
import pygame.display
If you just import pygame, you are importing the pygame package (or to be more exact, the __init__.py file inside that package's folder). And while some package import all their submodules in that file, it is nothing you can assume/expect all packages to do. Therefor it's better to explicitly import the modules inside the package instead of just importing the top-level package.
Another possibility: Is your file called pygame.py by any chance? If yes, either rename it or add from __future__ import absolute_import to the top of your file.
That looks like a major corruption in your Pygame installation. Remove it, if necessary re-download, then re-install and try again.
Also make sure that you did not use any file name like "pygame.py" for your files. It would cause namespace-conflicts. So if you name your file "pygame.py" and then do "import pygame", it's basically your file being imported and I bet, you don't have a "display" class in there...
I used precisely the lines you have posted in your question and they run perfectly (Python 3.4, PyGame 1.9.2 on WinXP).
I just use
import pygame
from pygame import *
Works fine.

Python: import graphutil module

I am modifying an old python code which imports graphutil module. However I am unable to find the source-package for the module and install it on ubuntu. Any help in this direction will be appreciated.
I doubt this is it, but there was a file in pywafo that may have been lifted for your project. This is the best I can find.

How to import win32api

I'm trying to use some python-2.1 code to control another program (ArcGIS). The version of python I am using is 2.5. I am getting the following error message when I run the code.
<type'exceptions.ImportError'>: No module named win32api
Failed to execute (polyline2geonetwork2).
I tried installing pywin32-214.win32-py2.5.exe but I still get the same error message. I can't figure out if I need to do anything to my original python install so it knows that I have installed this.
I think the problematic part of my code is the following:
import win32com.client, sys, string, os, re, time, math
gp = win32com.client.Dispatch("esriGeoprocessing.GpDispatch.1")
conn = win32com.client.Dispatch(r'ADODB.Connection')
Thanks for your help - I am quite new to python.
Your sys.path is
['C:\\Documents and Settings\\david\\My Documents\\GIS_References\\public\\funconn_public', 'C:\\Python25\\Lib\\idlelib', 'C:\\Program Files\\ArcGIS\\bin', 'C:\\WINDOWS\\system32\\python25.zip', 'C:\\Python25\\DLLs', 'C:\\Python25\\lib', 'C:\\Python25\\lib\\plat-win', 'C:\\Python25\\lib\\lib-tk', 'C:\\Python25', 'C:\\Python25\\lib\\site-packages', 'C:\\Python25\\lib\\site-packages\\win32', 'C:\\Python25\\lib\\site-packages\\win32\\lib', 'C:\\Python25\\lib\\site-packages\\Pythonwin']
and winapi.py is located in C:\Python25\Lib\site-packages\isapi\test\build\bdist.win32\winexe\temp.
Notice that this directory is not listed in your sys.path. To get things working, you'll need to put C:\Python25\Lib\site-packages\isapi\test\build\bdist.win32\winexe\temp in your sys.path.
It appears winapi.py is not yet installed. It is in a test\build...\temp directory.
I don't know much about Windows+Python. Maybe there is documentation that came with winapi.py which explains how the installation is suppose to be achieved.
A quick (but ugly) fix is to manually insert the needed directory into sys.path.
By this I mean, you can edit polyline2geonetwork.py and put
import sys
sys.path.append(r'C:\Python25\Lib\site-packages\isapi\test\build\bdist.win32\winexe\temp')
near the top of the file.
print out sys.path right before the import and make sure the path to win32com is in there

Categories