Questions tagged [pyzo]

Pyzo is a free and open-source computing environment based on Python

Pyzo is a free and open-source computing environment based on Python. If you’re used to e.g. Matlab, Pyzo can be considered a free alternative.

Essentially, Pyzo is a Python IDE, that plays well with conda to manage your Python packages (though it works with any Python interpreter), and has a website to help newcomers on their way. The IDE is aimed at interactivity and simplicity, and consists of an editor, a shell, and a set of tools to help the programmer in various ways.

27 questions
16
votes
3 answers

How to create modules in Jupyter notebook and import them? Python

I've created multiple python modules as .py files in a Python IDE called Pyzo in the following path: 'C:\Users\Michael\Anaconda3\Lib\site-packages' which I can then import like regular Python packages such as pandas and numpy into my Jupyter…
MichaelRSF
  • 886
  • 5
  • 16
  • 40
14
votes
2 answers

OSError: Unable to locate Ghostscript on paths

I tried to open an EPS image with Pyzo, I have installed PIL and Ghostscript (as I saw that it is necessary on some other website topics), my code is: from PIL import Image im = Image.open('''myimage.eps''') im.show() but when I run the code, Pyzo…
A.Rouet
  • 141
  • 1
  • 1
  • 5
4
votes
2 answers

How does os.system differ from command line?

Why does os.system('command') from my python interpreter not have the same output as command from the terminal? Question explained quickly : I have echo $CONFPATH /home/claramart/Datamart/Parameter but os.system('echo $CONFPATH') 0 Why is…
Ashargin
  • 498
  • 4
  • 11
2
votes
0 answers

How to add Miniconda to Pyzo on Windows?

I downloaded and installed Miniconda but when I open Pyzo and try to install libraries such as numpy or Scipy I get this message: Error in conda command: No module named conda
user9436260
1
vote
0 answers

Pyzo is not starting on windows 11

I'm having trouble with my new computer. I just get it, with windows 11 and I install Pyzo (with Anaconda) and when i'm starting Pyzo,it's written : "The application has failed to start because the side by side configuration is incorrect Windows…
1
vote
1 answer

can only concatenate str (not "NoneType") to str! What's wrong

legth = 6 price = '' for i in range(legth): price += "{} ".format(i) print(price) line2 = "" board = [] for i in range(legth): board.append([" "]*legth) for k in range(legth): # if k == 0: # line2 += "str(k) +" line2 +=…
1
vote
2 answers

How to Increase Delay on turtle.tracer()? [PYTHON]

I'm doing a practice project in Pyzo, and I've been having some issues with turtle.tracer(). When n =/= 0 or 1, I run into an issue where the objects on screen start to flicker. import turtle sketcher = turtle.Turtle() canvas =…
Hahl_Oh
  • 31
  • 3
1
vote
1 answer

NetworkX Test Failure

I installed NetworkX via conda on pyzo4.4.1. The python version I use is 3.6.1 conda install networkx conda update networkx As it is suggested in the installation guide of NetworkX, I also installed nose for testing and ran the full test with the…
Mark I.O.
  • 35
  • 5
1
vote
2 answers

Python reload, and IPython autoreload as well, is not working

I am using Python + IPython for Data Science. I made a folder that contains all the modules I wrote, organised in packages, something like python_workfolder | |---a | |---__init__.py | |---a1.py | |---a2.py | |---b | |---__init__.py | …
Marco
  • 1,454
  • 1
  • 16
  • 30
1
vote
0 answers

Pyzo will not start after fontcolor change

I am currently using Pyzo and changed its font and background color according to the instructions on their website (http://www.pyzo.org/pyzo_themes.html) by changing the init() in the base.py file. Everything was fine until I wanted to change the…
UrbanFox
  • 23
  • 4
1
vote
1 answer

Troubles with Variable Classes (StringVar, IntVar) using Pyzo IDE

I've been attempting to make a simple GUI, and have been working my way through tkinter's various functions. However, I can't for the life of me figure out why this doesn't work. from tkinter import Tk, Label, Button,…
eyeballfrog
  • 225
  • 1
  • 6
1
vote
2 answers

Error while installing pillow on pyzo

I'm trying to install PIL on pyzo2014a but it give an error: TypeError: __call__() missing 1 required positional argument: 'name'" Here is the complete report: C:\pyzo2014a\lib\site-packages\pip\__main__.py run on 01/25/17…
Romain.B
  • 11
  • 1
0
votes
2 answers

Execute Python code in an interactive shell in VS Code

I used to use Pyzo for Python coding and decided to give VS Code a try because it is more feature-rich. I came across one huge annoyance, however. In Pyzo, I am used to code „interactively“ as Pyzo executes code in an interactive shell…
Joey
  • 21
  • 2
0
votes
0 answers

[Pyzo][Anaconda] NameError: name 'pip' is not defined

i am sorry for what is going to follow because it looks like a rookie mistake. I am new to all this environment and i do not understand what are the causes of my problem. I tried the solutions i found on stackoverflow but it is still not working. i…
0
votes
0 answers

Im trying to unify words together on my python application

As part of my assignment I'm trying to write a program that reads a text file and unifies all the words in that text file together. I made the code so far but it is not working for me and I do not know how else to proceed. What am I missing? def…
1
2