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
0
votes
3 answers

Can't import os in python

I get this message when trying to import os while using Pyzo 4.10.2 : ValueError: source code string cannot contain null bytes Here is the code I tried : from os import * os.mkdir('Repertoire_test') I also tried import os previously. When I try…
0
votes
1 answer

Running a Python Script using Pyzo from the Editor

This is my first time to use python. I am using IDE Pyzo and trying to run the following script. import matplotlib.pyplot as plt from numpy.random import normal,rand x = normal(size=200) plt.hist(x, bins=30) plt.show() When I run it line by line…
ASE
  • 1,702
  • 2
  • 21
  • 29
0
votes
0 answers

python - find where modules are stored in Ubuntu

I installed some modules such as matplotlib, through both the methods: sudo apt-get install python-matplotlib and pip install matplotlib Technically I should have the library somewhere, right? But I don't know where. Looking at the…
TakeMeToTheMoon
  • 527
  • 1
  • 8
  • 25
0
votes
2 answers

Getting a "The process failed to start (invalid command?). (1)" error when starting up Pyzo

I recently booted up my Pyzo IDE with the intention of doing some programming, however, upon starting up the python shell it gave this following error: The given path was not found The process failed to start (invalid command?). (1) I am not able…
0
votes
0 answers

installing Numpy by pyzo errors

excuse me but I just install Pyzo and follow the instructions from that website http://www.pyzo.org/start.html I now get troubles to load the "numpy" module when i enter conda install numpy after a while it show me that: #DATA CODES (start) Fetching…
0
votes
1 answer

Pygame on ubuntu doesn't work

I just installed Ubuntu to my computer, and I wanted to work on my .py project, so I did install Pyzo and Miniconda, and did a bunch of stuff to get Python3 and pygame. So, right now, it seems like Python is ok with importing pygame, but when the…
Val_
  • 331
  • 1
  • 3
  • 13
0
votes
1 answer

Weird behavior when installing/updating python packages from pyzo console

I just installed pyzo and miniconda on a new computer. When I try to install (or update) packages using conda from the pyzo console it doesn't actually install anything. I get something like this: >Python 3.5.2 |Continuum Analytics, Inc.| (default,…
py_man
  • 343
  • 3
  • 6
0
votes
1 answer

How do I stop Pyzo from calling mainloop?

I used to use the Interactive Editor for Python, and then I "upgraded" to Pyzo (since IEP was merged into Pyzo). One of my programs uses tkinter to create a GUI. The code used to work just fine: I would run the file as a script, and then, in the…
Alpha Bravo
  • 170
  • 12
-1
votes
2 answers

Having trouble for calculating total amount of Items

I'm having trouble understanding why some of the first 2 items on my list is not being calculated. What am I missing? code: from tkinter import * root = Tk() root.geometry('300x200') root.title("Grade Calculator") def…
George
  • 19
-1
votes
2 answers

I having trouble running my python Tkinter question

I'm working on a python assignment and this is where I got so far. I'm stuck and cannot execute the application. I'm making a calculator that scores the average and gives a grade letter. I was looking into my professor's video and there was "import…
George
  • 19
-1
votes
2 answers

ImportError for graphics.py

I've searched this and couldn't find an answer. I do have the init file. The screenshot attached sums everything up. Added a new screenshot, getting the same error even though all three scripts are in the same Pyzo folder.
4u53r
  • 717
  • 1
  • 7
  • 17
-3
votes
1 answer

Python Regex to match a specific expression

I have the following strings: project_identifier = "CENTRAL PROPERTY DEVELOPMENTS JHB (PTY) LTD (1220681)" plan_project_name = "BLP416223852-CENTRAL PROPERTY DEVELOPMENTS JHB (PTY) LTD" acnac_Id = "BLP416223852" project_sw_id = "1232831" I am using…
Nathi
  • 1
1
2